Skip to content
Snippets Groups Projects
Commit d56a3eac authored by Brad King's avatar Brad King
Browse files

BUG: Adjusting timeouts for tests 4 and 5 to avoid early killing.

parent 18000124
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ int test5(int argc, const char* argv[]) ...@@ -97,7 +97,7 @@ int test5(int argc, const char* argv[])
fflush(stdout); fflush(stdout);
fflush(stderr); fflush(stderr);
r = runChild(cmd, kwsysProcess_State_Exception, r = runChild(cmd, kwsysProcess_State_Exception,
kwsysProcess_Exception_Fault, 1, 1, 1, 0, 1); kwsysProcess_Exception_Fault, 1, 1, 1, 0, 3);
fprintf(stdout, "Output on stdout after recursive test.\n"); fprintf(stdout, "Output on stdout after recursive test.\n");
fprintf(stderr, "Output on stderr after recursive test.\n"); fprintf(stderr, "Output on stderr after recursive test.\n");
fflush(stdout); fflush(stdout);
...@@ -293,7 +293,7 @@ int main(int argc, const char* argv[]) ...@@ -293,7 +293,7 @@ int main(int argc, const char* argv[])
int values[6] = {0, 123, 1, 1, 0, 0}; int values[6] = {0, 123, 1, 1, 0, 0};
int outputs[6] = {1, 1, 1, 1, 1, 0}; int outputs[6] = {1, 1, 1, 1, 1, 0};
int delays[6] = {0, 0, 0, 0, 0, 1}; int delays[6] = {0, 0, 0, 0, 0, 1};
double timeouts[6] = {3, 3, 3, 3, 5, 0.1}; double timeouts[6] = {3, 3, 3, 3, 10, 0.1};
int r; int r;
const char* cmd[4]; const char* cmd[4];
cmd[0] = argv[0]; cmd[0] = argv[0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment