ole32/tests: Increase a timeout.

It's 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:33:15 +01:00
parent 0ce5c82a3c
commit bb22b55e6d

View file

@ -3031,7 +3031,7 @@ static void test_CoWaitForMultipleHandles(void)
/* test message pumping when CoWaitForMultipleHandles is called from non main apartment thread */
thread = CreateThread(NULL, 0, test_CoWaitForMultipleHandles_thread, handles, 0, &tid);
index = WaitForSingleObject(thread, 500);
index = WaitForSingleObject(thread, 5000);
ok(index == WAIT_OBJECT_0, "WaitForSingleObject failed\n");
CloseHandle(thread);