Alexandre Julliard : oleaut32/tests: Allow UuidCreate to return RPC_S_UUID_LOCAL_ONLY.

Alexandre Julliard julliard at winehq.org
Tue Jun 24 06:44:48 CDT 2008


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Jun 24 11:51:07 2008 +0200

oleaut32/tests: Allow UuidCreate to return RPC_S_UUID_LOCAL_ONLY.

---

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

diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c
index 74a7812..3479c18 100644
--- a/dlls/oleaut32/tests/typelib.c
+++ b/dlls/oleaut32/tests/typelib.c
@@ -640,7 +640,7 @@ static void test_QueryPathOfRegTypeLib(void)
     BSTR path;
 
     status = UuidCreate(&uid);
-    ok(!status, "UuidCreate error %08lx\n", status);
+    ok(!status || status == RPC_S_UUID_LOCAL_ONLY, "UuidCreate error %08lx\n", status);
 
     StringFromGUID2(&uid, uid_str, 40);
     /*trace("GUID: %s\n", wine_dbgstr_w(uid_str));*/




More information about the wine-cvs mailing list