From 7e4ea8e57c71b52fae30f671bdcd6c0dc311879a Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Sun, 14 Sep 2008 22:18:34 +0200 Subject: [PATCH] crypt32/tests: Don't crash on NT4. --- dlls/crypt32/tests/store.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dlls/crypt32/tests/store.c b/dlls/crypt32/tests/store.c index b982c565337..450b754953b 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;