Commit bb22b55e authored by Alexandre Julliard's avatar Alexandre Julliard

ole32/tests: Increase a timeout.

It's too short when running under QEMU. Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 0ce5c82a
......@@ -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);
......
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