[PATCH] crypt32/tests: Fix test on win9x

Detlef Riekenberg wine.dev at web.de
Sun Jul 27 15:04:32 CDT 2008


---
 dlls/crypt32/tests/sip.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/crypt32/tests/sip.c b/dlls/crypt32/tests/sip.c
index b01229c..d5d2a50 100644
--- a/dlls/crypt32/tests/sip.c
+++ b/dlls/crypt32/tests/sip.c
@@ -267,7 +267,9 @@ static void test_SIPRetrieveSubjectGUID(void)
     DeleteFileA(tempfile);
 
     /* Create a .cab file */
-    file = CreateFileW(tempfileW, GENERIC_WRITE, 0, NULL, CREATE_NEW, 0, NULL);
+    SetLastError(0xdeadbeef);
+    file = CreateFileA(tempfile, GENERIC_WRITE, 0, NULL, CREATE_NEW, 0, NULL);
+    ok(file != INVALID_HANDLE_VALUE, "failed with %u\n", GetLastError());
     WriteFile(file, cabFileData, sizeof(cabFileData), &written, NULL);
     CloseHandle(file);
 
@@ -278,8 +280,9 @@ static void test_SIPRetrieveSubjectGUID(void)
             GetLastError(), GetLastError() );
     ok ( !memcmp(&subject, &cabGUID, sizeof(GUID)),
         "Expected GUID %s for cabinet file, not %s\n", show_guid(&cabGUID, guid1), show_guid(&subject, guid2));
+
     /* Clean up */
-    DeleteFileW(tempfileW);
+    DeleteFileA(tempfile);
 }
 
 static void test_SIPLoad(void)
-- 
1.5.4.3


--=-F+1nWD1C1l2c9pNJgSVU--




More information about the wine-patches mailing list