diff options
author | backer@chromium.org <backer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-20 19:41:01 +0000 |
---|---|---|
committer | backer@chromium.org <backer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-20 19:41:01 +0000 |
commit | 6939017b8df7e39d829855bda4538fcf75ca3a97 (patch) | |
tree | 9d7e660dcd50ab66707a49f35b743737f484bd69 | |
parent | c3bd85ad36f08eaaa9a2fddde08aa0204a0a7964 (diff) | |
download | chromium_src-6939017b8df7e39d829855bda4538fcf75ca3a97.zip chromium_src-6939017b8df7e39d829855bda4538fcf75ca3a97.tar.gz chromium_src-6939017b8df7e39d829855bda4538fcf75ca3a97.tar.bz2 |
Get rid of unused flags.
These ui test flags no longer exist. Removing them should be a no-op.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6880048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82345 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | tools/heapcheck/chrome_tests.py | 1 | ||||
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 5 |
2 files changed, 1 insertions, 5 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py index 0f452ba..c3fc592 100755 --- a/tools/heapcheck/chrome_tests.py +++ b/tools/heapcheck/chrome_tests.py @@ -303,7 +303,6 @@ class ChromeTests(object): def TestUI(self): return self.SimpleTest("chrome", "ui_tests", cmd_args=[ - "--ui-test-timeout=120000", "--ui-test-action-timeout=80000", "--ui-test-action-max-timeout=180000", "--ui-test-terminate-timeout=60000"]) diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 821502c..fb45f55 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -234,7 +234,6 @@ class ChromeTests: def TestRemoting(self): return self.SimpleTest("chrome", "remoting_unittests", cmd_args=[ - "--ui-test-timeout=240000", "--ui-test-action-timeout=120000", "--ui-test-action-max-timeout=280000"]) @@ -273,10 +272,8 @@ class ChromeTests: # Valgrind timeouts are in seconds. UI_VALGRIND_ARGS = ["--timeout=7200", "--trace_children", "--indirect"] # UI test timeouts are in milliseconds. - UI_TEST_ARGS = ["--ui-test-timeout=240000", - "--ui-test-action-timeout=120000", + UI_TEST_ARGS = ["--ui-test-action-timeout=120000", "--ui-test-action-max-timeout=280000", - "--ui-test-sleep-timeout=120000", "--ui-test-terminate-timeout=120000"] def TestUI(self): return self.SimpleTest("chrome", "ui_tests", |