Commit 56a624b0 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

ole32: Wait forever on the ready_event in the local server tests.

parent 24723913
......@@ -2555,7 +2555,7 @@ static void test_local_server(void)
ok(process != NULL, "couldn't start local server process, error was %d\n", GetLastError());
ready_event = CreateEvent(NULL, FALSE, FALSE, "Wine COM Test Ready Event");
WaitForSingleObject(ready_event, 1000);
WaitForSingleObject(ready_event, INFINITE);
CloseHandle(ready_event);
hr = CoCreateInstance(&CLSID_WineOOPTest, NULL, CLSCTX_LOCAL_SERVER, &IID_IClassFactory, (void **)&cf);
......
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