summaryrefslogtreecommitdiffstats
path: root/chromium/testing/scripts/content_shell_crash_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/testing/scripts/content_shell_crash_test.py')
-rwxr-xr-xchromium/testing/scripts/content_shell_crash_test.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/chromium/testing/scripts/content_shell_crash_test.py b/chromium/testing/scripts/content_shell_crash_test.py
index 6f0e9b3c06d..5dc46b2f743 100755
--- a/chromium/testing/scripts/content_shell_crash_test.py
+++ b/chromium/testing/scripts/content_shell_crash_test.py
@@ -16,13 +16,6 @@ import xvfb
from scripts import common
-# Unfortunately we need to copy these variables from ../test_env.py.
-# Importing it and using its get_sandbox_env breaks test runs on Linux
-# (it seems to unset DISPLAY).
-CHROME_SANDBOX_ENV = 'CHROME_DEVEL_SANDBOX'
-CHROME_SANDBOX_PATH = '/opt/chromium/chrome_sandbox'
-
-
def main(argv):
parser = argparse.ArgumentParser()
parser.add_argument(
@@ -43,10 +36,6 @@ def main(argv):
args = parser.parse_args(argv)
env = os.environ.copy()
- # Assume we want to set up the sandbox environment variables all the
- # time; doing so is harmless on non-Linux platforms and is needed
- # all the time on Linux.
- env[CHROME_SANDBOX_ENV] = CHROME_SANDBOX_PATH
additional_args = []
if args.platform == 'win32':