From 5346ddb3bf214666a6aaa9f6052dbfe0cc65854f Mon Sep 17 00:00:00 2001 From: "ojan@chromium.org" Date: Fri, 20 Nov 2009 21:51:28 +0000 Subject: 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 --- webkit/tools/layout_tests/run_webkit_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webkit/tools/layout_tests') 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. -- cgit v1.1