diff --git a/testProcess.c b/testProcess.c index 3bd47e3e5a2ba9f4b8fedd15371b85473f2e8177..b34871f7c202956cd0c59503a1f2210d0ee70c60 100644 --- a/testProcess.c +++ b/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];