quartz/tests: Wait longer in test_render_with_multithread().

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2019-10-09 23:15:08 -05:00 committed by Alexandre Julliard
parent 4d4e3e4045
commit 2b9596a626
1 changed files with 1 additions and 1 deletions

View File

@ -778,7 +778,7 @@ static void test_render_with_multithread(void)
thread = CreateThread(NULL, 0, call_RenderFile_multithread, graph, 0, NULL);
ok(WaitForSingleObject(thread, 1000) == WAIT_OBJECT_0, "wait failed\n");
ok(!WaitForSingleObject(thread, 10000), "Wait timed out.\n");
IFilterGraph2_Release(graph);
CloseHandle(thread);
CoUninitialize();