Module: wine Branch: master Commit: 7e4ea8e57c71b52fae30f671bdcd6c0dc311879a URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e4ea8e57c71b52fae30f671bd...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Sun Sep 14 22:18:34 2008 +0200
crypt32/tests: Don't crash on NT4.
---
dlls/crypt32/tests/store.c | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/dlls/crypt32/tests/store.c b/dlls/crypt32/tests/store.c index b982c56..450b754 100644 --- a/dlls/crypt32/tests/store.c +++ b/dlls/crypt32/tests/store.c @@ -1260,11 +1260,15 @@ static void testFileNameStore(void) BOOL ret; DWORD GLE;
- store = CertOpenStore(CERT_STORE_PROV_FILENAME_W, 0, 0, 0, NULL); - GLE = GetLastError(); - ok(!store && (GLE == ERROR_PATH_NOT_FOUND || GLE == ERROR_INVALID_PARAMETER), - "Expected ERROR_PATH_NOT_FOUND or ERROR_INVALID_PARAMETER, got %08x\n", - GLE); + if (0) + { + /* Crashes on NT4 */ + store = CertOpenStore(CERT_STORE_PROV_FILENAME_W, 0, 0, 0, NULL); + GLE = GetLastError(); + ok(!store && (GLE == ERROR_PATH_NOT_FOUND || GLE == ERROR_INVALID_PARAMETER), + "Expected ERROR_PATH_NOT_FOUND or ERROR_INVALID_PARAMETER, got %08x\n", + GLE); + }
if (!GetTempFileNameW(szDot, szPrefix, 0, filename)) return;