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

Alexandre Julliard julliard at winehq.org
Tue Nov 13 08:34:44 CST 2007


Module: wine
Branch: master
Commit: 56a624b0fe55096c38aca3d6fb4b758f4666eebd
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=56a624b0fe55096c38aca3d6fb4b758f4666eebd

Author: Rob Shearman <rob at codeweavers.com>
Date:   Mon Nov 12 20:15:29 2007 +0000

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

---

 dlls/ole32/tests/marshal.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ole32/tests/marshal.c b/dlls/ole32/tests/marshal.c
index 56c213e..ae82e37 100644
--- a/dlls/ole32/tests/marshal.c
+++ b/dlls/ole32/tests/marshal.c
@@ -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);




More information about the wine-cvs mailing list