Increase default timeout to 15 seconds.
authorBen Pfaff <blp@cs.stanford.edu>
Mon, 7 Feb 2005 05:52:50 +0000 (05:52 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Mon, 7 Feb 2005 05:52:50 +0000 (05:52 +0000)
grading/threads/run-tests

index 731499adc67e8a59f968ec71e21178fd6d56189f..0852f6f99536d11953debf5d61b4141c6e8ead38 100755 (executable)
@@ -94,7 +94,7 @@ sub run_test {
     xsystem ("cp pintos/src/threads/build/os.dsk output/$test");
 
     # Run.
-    my ($timeout) = $test !~ /^mlfqs/ ? 10 : 600;
+    my ($timeout) = $test !~ /^mlfqs/ ? 15 : 600;
     return run_pintos (["-v", "run", "-q"],
                       CHDIR => "pintos/src/threads/build",
                       LOG => "$test/run",