MCPcopy Create free account
hub / github.com/Kitware/CMake / test7

Function test7

Source/kwsys/testProcess.c:196–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194#define MINPOLL 5
195#define MAXPOLL 20
196static int test7(int argc, char const* argv[])
197{
198 (void)argc;
199 (void)argv;
200 fprintf(stdout, "Output on stdout before sleep.\n");
201 fprintf(stderr, "Output on stderr before sleep.\n");
202 fflush(stdout);
203 fflush(stderr);
204 /* Sleep for 1 second. */
205 testProcess_sleep(1);
206 fprintf(stdout, "Output on stdout after sleep.\n");
207 fprintf(stderr, "Output on stderr after sleep.\n");
208 fflush(stdout);
209 fflush(stderr);
210 return 0;
211}
212
213static int test8(int argc, char const* argv[])
214{

Callers 1

mainFunction · 0.85

Calls 1

testProcess_sleepFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…