Bug 594263: Bump up timeout to try to make orange go away. r=sdwilsh a=t

This commit is contained in:
Chris Jones 2011-01-13 18:07:43 -06:00
parent fbfc5f0ad6
commit 227698aa53
2 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ bool
CheckForDeadlock(const char* test, const char* const* findTokens)
{
Subprocess proc(test);
proc.RunToCompletion(1000);
proc.RunToCompletion(5000);
if (0 == proc.mExitCode)
return false;

View File

@ -258,7 +258,7 @@ bool
CheckForDeadlock(const char* test, const char* const* findTokens)
{
Subprocess proc(test);
proc.RunToCompletion(1000);
proc.RunToCompletion(5000);
if (0 == proc.mExitCode)
return false;