Commit 42596be2 authored by qyearsley's avatar qyearsley Committed by Commit bot

In Port.setup_environ_for_server, don't copy apparently unused env vars.

Review-Url: https://codereview.chromium.org/2390683003
Cr-Commit-Position: refs/heads/master@{#422967}
parent ef97eaf6
......@@ -1069,12 +1069,8 @@ class Port(object):
def setup_environ_for_server(self):
# We intentionally copy only a subset of the environment when
# launching subprocesses to ensure consistent test results.
clean_env = {
'LOCAL_RESOURCE_ROOT': self.layout_tests_dir(), # FIXME: Is this used?
}
clean_env = {}
variables_to_copy = [
'WEBKIT_TESTFONTS', # FIXME: Is this still used?
'WEBKITOUTPUTDIR', # FIXME: Is this still used?
'CHROME_DEVEL_SANDBOX',
'CHROME_IPC_LOGGING',
'ASAN_OPTIONS',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment