| 92 | } |
| 93 | |
| 94 | static int test3(int argc, char const* argv[]) |
| 95 | { |
| 96 | (void)argc; |
| 97 | (void)argv; |
| 98 | fprintf(stdout, "Output before sleep on stdout from timeout test.\n"); |
| 99 | fprintf(stderr, "Output before sleep on stderr from timeout test.\n"); |
| 100 | fflush(stdout); |
| 101 | fflush(stderr); |
| 102 | testProcess_sleep(15); |
| 103 | fprintf(stdout, "Output after sleep on stdout from timeout test.\n"); |
| 104 | fprintf(stderr, "Output after sleep on stderr from timeout test.\n"); |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | static int test4(int argc, char const* argv[]) |
| 109 | { |
no test coverage detected
searching dependent graphs…