summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authortimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 09:55:10 +0000
committertimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 09:55:10 +0000
commit40a96ef431df28936d7dc35240c58b3ec6987036 (patch)
treeddddc8945d842e3b36dbdf0429bf883321d572a8 /tools
parent9f93027279b04fab04d10e80d9ba166439ebe685 (diff)
downloadchromium_src-40a96ef431df28936d7dc35240c58b3ec6987036.zip
chromium_src-40a96ef431df28936d7dc35240c58b3ec6987036.tar.gz
chromium_src-40a96ef431df28936d7dc35240c58b3ec6987036.tar.bz2
Disable sandbox when running under Valgrind
BUG=173334 TBR=eugenis Review URL: https://codereview.chromium.org/12212029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180949 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-xtools/valgrind/chrome_tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py
index 89c4507..502b885 100755
--- a/tools/valgrind/chrome_tests.py
+++ b/tools/valgrind/chrome_tests.py
@@ -345,14 +345,16 @@ class ChromeTests:
UI_VALGRIND_ARGS = ["--timeout=14400", "--trace_children", "--indirect"]
# UI test timeouts are in milliseconds.
UI_TEST_ARGS = ["--ui-test-action-timeout=60000",
- "--ui-test-action-max-timeout=150000"]
+ "--ui-test-action-max-timeout=150000",
+ "--no-sandbox"]
# TODO(thestig) fine-tune these values.
# Valgrind timeouts are in seconds.
BROWSER_VALGRIND_ARGS = ["--timeout=50000", "--trace_children", "--indirect"]
# Browser test timeouts are in milliseconds.
BROWSER_TEST_ARGS = ["--ui-test-action-timeout=200000",
- "--ui-test-action-max-timeout=400000"]
+ "--ui-test-action-max-timeout=400000",
+ "--no-sandbox"]
def TestAutomatedUI(self):
return self.SimpleTest("chrome", "automated_ui_tests",