Commit 822e2773 authored by Alexandre Julliard's avatar Alexandre Julliard

rpcrt4/tests: Increase some timeouts.

These are too short when running under QEMU. Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 3f61f905
......@@ -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);
......
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment