rpcrt4/tests: Increase some timeouts.

These are too short when running under QEMU.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-10-30 22:32:54 +01:00
parent 3f61f905ba
commit 822e2773d4
2 changed files with 2 additions and 2 deletions

View File

@ -1383,7 +1383,7 @@ static void test_delegated_methods(void)
ready_event = CreateEventA(NULL, TRUE, FALSE, "wine_cstub_test_server_ready");
process = create_process("server");
ok(!WaitForSingleObject(ready_event, 1000), "wait failed\n");
ok(!WaitForSingleObject(ready_event, 5000), "wait failed\n");
hr = NdrDllGetClassObject(&CLSID_test_ps, &IID_IPSFactoryBuffer, (void **)&ps,
&aProxyFileList, &CLSID_test_ps, &gPFactory);

View File

@ -2290,7 +2290,7 @@ static void run_server(HANDLE ready_event)
ret = SetEvent(ready_event);
ok(ret, "SetEvent failed: %u\n", GetLastError());
ret = WaitForSingleObject(stop_event, 1000);
ret = WaitForSingleObject(stop_event, 5000);
ok(WAIT_OBJECT_0 == ret, "WaitForSingleObject\n");
status = RpcMgmtWaitServerListen();