From bb22b55e6db927deff4aecf4c65ed06801f8b073 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 30 Oct 2019 22:33:15 +0100 Subject: [PATCH] ole32/tests: Increase a timeout. It's too short when running under QEMU. Signed-off-by: Alexandre Julliard --- dlls/ole32/tests/compobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ole32/tests/compobj.c b/dlls/ole32/tests/compobj.c index 6361f5f0da6..69a38d48b20 100644 --- a/dlls/ole32/tests/compobj.c +++ b/dlls/ole32/tests/compobj.c @@ -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);