psapi/tests: Increase some timeouts.

These are too short when running under QEMU.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Alexandre Julliard 2019-10-30 22:35:35 +01:00
parent bb22b55e6d
commit 3f61f905ba
1 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ static void test_EnumProcessModules(void)
ret = CreateProcessA(NULL, buffer, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
ok(ret, "CreateProcess failed: %u\n", GetLastError());
ret = WaitForInputIdle(pi.hProcess, 1000);
ret = WaitForInputIdle(pi.hProcess, 5000);
ok(!ret, "wait timed out\n");
SetLastError(0xdeadbeef);
@ -146,7 +146,7 @@ static void test_EnumProcessModules(void)
ret = CreateProcessA(NULL, buffer, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
ok(ret, "CreateProcess failed: %u\n", GetLastError());
ret = WaitForInputIdle(pi.hProcess, 1000);
ret = WaitForInputIdle(pi.hProcess, 5000);
ok(!ret, "wait timed out\n");
SetLastError(0xdeadbeef);
@ -180,7 +180,7 @@ todo_wine
pWow64RevertWow64FsRedirection(cookie);
ok(ret, "CreateProcess failed: %u\n", GetLastError());
ret = WaitForInputIdle(pi.hProcess, 1000);
ret = WaitForInputIdle(pi.hProcess, 5000);
ok(!ret, "wait timed out\n");
SetLastError(0xdeadbeef);