try increasing test timeout

git-svn-id: svn://10.0.0.236/trunk@226621 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sayrer%gmail.com 2007-05-18 20:42:56 +00:00
parent b91c4220fa
commit 072d278464

View File

@ -12,8 +12,8 @@ TestRunner._currentTest = 0;
TestRunner._urls = [];
/**
* Make sure the tests don't hang. Runs every 120 seconds, but it will
* take up to 240 seconds to detect a hang.
* Make sure the tests don't hang. Runs every 180 seconds, but it will
* take up to 360 seconds to detect a hang.
**/
TestRunner._testCheckPoint = -1;
TestRunner._checkForHangs = function() {
@ -25,7 +25,7 @@ TestRunner._checkForHangs = function() {
frameWindow.SimpleTest.finish();
}
TestRunner._testCheckPoint = TestRunner._currentTest;
TestRunner.deferred = callLater(120, TestRunner._checkForHangs);
TestRunner.deferred = callLater(180, TestRunner._checkForHangs);
}
}