Increased TestSuccess startup delay

jenkins run tests are really slow :/
This commit is contained in:
Armin Novak 2021-06-01 13:03:43 +02:00 committed by akallabeth
parent 37c7d5d0f0
commit 7f5f91766a
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ static int testSuccess(int port)
if (!CreateProcessA(exe, commandLine, NULL, NULL, FALSE, 0, NULL, wpath, &si, &process))
goto fail;
Sleep(1 * 1000); /* let the server start */
Sleep(3 * 1000); /* let the server start */
r = runInstance(argc, clientArgs, NULL);
if (!TerminateProcess(process.hProcess, 0))