Lines Matching full:environment
63 if "DYLD_INSERT_LIBRARIES" not in config.environment:
66 # If we're running in a virtual environment, we have to copy Python into
67 # the virtual environment for it to work.
103 # a virtual environment, we can't use it directly. Create a symlink
130 config.environment["MallocNanoZone"] = "0"
132 config.environment["ASAN_OPTIONS"] = "detect_stack_use_after_return=1"
134 config.environment["DYLD_INSERT_LIBRARIES"] = find_sanitizer_runtime(
139 config.environment["TSAN_OPTIONS"] = "halt_on_error=1"
141 config.environment["DYLD_INSERT_LIBRARIES"] = find_sanitizer_runtime(
162 config.environment.get(shlibpath_var, ""),
165 config.environment[shlibpath_var] = shlibpath
224 # Forward ASan-specific environment variables to tests, as a test may load an
227 if env_var in config.environment:
228 dotest_cmd += ["--inferior-env", env_var + "=" + config.environment[env_var]]
328 config.environment["TERM"] = os.getenv("TERM", default="vt100")
332 config.environment["FREEBSD_LEGACY_PLUGIN"] = os.environ["FREEBSD_LEGACY_PLUGIN"]
336 config.environment["XDG_CACHE_HOME"] = os.environ["XDG_CACHE_HOME"]
338 # Transfer some environment variables into the tests on Windows build host.
342 config.environment[v] = os.environ[v]