Browse Source

BUG: Extending timeout of test 6 from 0.1 seconds to 3 seconds. This should avoid missed signals and intermittent failures.

Brad King 21 years ago
parent
commit
cc2cd3bc41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/kwsys/testProcess.c

+ 1 - 1
Source/kwsys/testProcess.c

@@ -293,7 +293,7 @@ int main(int argc, const char* argv[])
     int values[6] = {0, 123, 1, 1, 0, 0};
     int outputs[6] = {1, 1, 1, 1, 1, 0};
     int delays[6] = {0, 0, 0, 0, 0, 1};
-    double timeouts[6] = {3, 3, 3, 3, 30, 0.1};
+    double timeouts[6] = {3, 3, 3, 3, 30, 3};
     int r;
     const char* cmd[4];
     cmd[0] = argv[0];