summaryrefslogtreecommitdiffstats
path: root/webkit/tools/layout_tests
diff options
context:
space:
mode:
authorojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 21:51:28 +0000
committerojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 21:51:28 +0000
commit5346ddb3bf214666a6aaa9f6052dbfe0cc65854f (patch)
treec90e46fb40df9bde05a90c885fa666dc5a291ef6 /webkit/tools/layout_tests
parentbfa5cf8199e3b86cf15864b2390cd10ad893c212 (diff)
downloadchromium_src-5346ddb3bf214666a6aaa9f6052dbfe0cc65854f.zip
chromium_src-5346ddb3bf214666a6aaa9f6052dbfe0cc65854f.tar.gz
chromium_src-5346ddb3bf214666a6aaa9f6052dbfe0cc65854f.tar.bz2
Only retry unexpected failures once. Really the retry functionality
should be there to address tests that fail 1-2% of the time. Tests that fail frequently enough we point to real bugs either in our code or in the test that we should fix. There are few enough such tests that a) They are easy to mark in test_expectations.txt, so won't turn the tree red. b) We can just fix them all. Review URL: http://codereview.chromium.org/422005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32678 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/layout_tests')
-rwxr-xr-xwebkit/tools/layout_tests/run_webkit_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py
index 196b8cc..50f6c46 100755
--- a/webkit/tools/layout_tests/run_webkit_tests.py
+++ b/webkit/tools/layout_tests/run_webkit_tests.py
@@ -120,7 +120,7 @@ class TestRunner:
# test_shell.exe.
DEFAULT_TEST_TIMEOUT_MS = 6 * 1000
- NUM_RETRY_ON_UNEXPECTED_FAILURE = 3
+ NUM_RETRY_ON_UNEXPECTED_FAILURE = 1
def __init__(self, options):
"""Initialize test runner data structures.