diff options
Diffstat (limited to 'webkit/tools/test_shell/test_shell_gtk.cc')
-rw-r--r-- | webkit/tools/test_shell/test_shell_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/test_shell_gtk.cc b/webkit/tools/test_shell/test_shell_gtk.cc index 20afed9..5a7b4e8 100644 --- a/webkit/tools/test_shell/test_shell_gtk.cc +++ b/webkit/tools/test_shell/test_shell_gtk.cc @@ -439,7 +439,7 @@ void TestShell::WaitTestFinished() { // Install an alarm signal handler that will kill us if we time out. signal(SIGALRM, AlarmHandler); - alarm(GetLayoutTestTimeoutInSeconds()); + alarm(GetLayoutTestTimeoutForWatchDog() / 1000); // TestFinished() will post a quit message to break this loop when the page // finishes loading. |