From 91c254d7087421595c1ddef345e7a704dba70988 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 28 Apr 2005 09:21:03 -0400 Subject: BUG: Extending all timeouts to help out slower machines. --- Source/kwsys/testProcess.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/kwsys/testProcess.c b/Source/kwsys/testProcess.c index 80f5880..905233f 100644 --- a/Source/kwsys/testProcess.c +++ b/Source/kwsys/testProcess.c @@ -57,9 +57,9 @@ int test3(int argc, const char* argv[]) fflush(stdout); fflush(stderr); #if defined(_WIN32) - Sleep(5000); + Sleep(15000); #else - sleep(5); + sleep(15); #endif fprintf(stdout, "Output after sleep on stdout from timeout test.\n"); fprintf(stderr, "Output after sleep on stderr from timeout test.\n"); @@ -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, 3}; + double timeouts[6] = {10, 10, 10, 10, 30, 10}; int r; const char* cmd[4]; cmd[0] = argv[0]; -- cgit v0.12