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:
parent
3f61f905ba
commit
822e2773d4
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue