Skip to content
Snippets Groups Projects
Commit 5e7655bb authored by Eric Cano's avatar Eric Cano
Browse files

Increased the time before child process runs in tests to give a better chance to parent

process of seeing it running (following failure in TeamCity run).
parent af85c0ea
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ namespace ThreadedUnitTests {
/* Just sleep a bit so the parent process gets a chance to see us running */
struct timespec ts;
ts.tv_sec = 0;
ts.tv_nsec = 10*1000*1000;
ts.tv_nsec = 100*1000*1000;
nanosleep(&ts, NULL);
return 123;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment