diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-14 16:34:08 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-14 16:34:08 +0000 |
commit | c31085d9656ff79a389318ffc7afed0fd2cd296c (patch) | |
tree | e1a107021e7edd13f15da908649de5b954bc1df3 /webkit | |
parent | a45011c0fa576b06c5b6ab38e8f6aa8ae081a3bb (diff) | |
download | chromium_src-c31085d9656ff79a389318ffc7afed0fd2cd296c.zip chromium_src-c31085d9656ff79a389318ffc7afed0fd2cd296c.tar.gz chromium_src-c31085d9656ff79a389318ffc7afed0fd2cd296c.tar.bz2 |
Since we have a lot of tests that time out on the build bots, go ahead and
double the timeout (windows does x2.5) to see if it helps w/ the delays do
to IO problems on the build bots.
Review URL: http://codereview.chromium.org/18227
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8014 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/test_shell/test_shell_mac.mm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/test_shell_mac.mm b/webkit/tools/test_shell/test_shell_mac.mm index 3429d06..5b56949 100644 --- a/webkit/tools/test_shell/test_shell_mac.mm +++ b/webkit/tools/test_shell/test_shell_mac.mm @@ -517,8 +517,10 @@ void TestShell::WaitTestFinished() { // timeout, it can't do anything except terminate the test // shell, which is unfortunate. // Windows multiplies by 2.5, but that causes us to run for far, far too - // long. We can adjust it down later if we need to. - NSTimeInterval timeout_seconds = GetLayoutTestTimeoutInSeconds(); + // long. We can adjust it down later if we need to. (The Mac BuildBots have + // some IO problems that slow things down, so we're leaving this high just + // to give the server a little more breathing room.) + NSTimeInterval timeout_seconds = GetLayoutTestTimeoutInSeconds() * 2.0; WatchDogTarget* watchdog = [[[WatchDogTarget alloc] initWithTimeout:timeout_seconds] autorelease]; NSThread* thread = [[NSThread alloc] initWithTarget:watchdog |