From a6715f856e431ab6df9a7eea6b539ae19193fb09 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Sun, 27 Jul 2008 22:04:32 +0200 Subject: [PATCH] crypt32/tests: Fix test on win9x (CreateFileW not implemented). --- dlls/crypt32/tests/sip.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dlls/crypt32/tests/sip.c b/dlls/crypt32/tests/sip.c index b01229c0ce4..d5d2a507449 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) -- 2.11.4.GIT