From abae415487b9198dca5a918a09832a47008c1005 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 1 May 2010 02:42:11 +0200 Subject: [PATCH] crypt32/tests: Tighten tests in testPortPublicKeyInfo. --- dlls/crypt32/tests/encode.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/crypt32/tests/encode.c b/dlls/crypt32/tests/encode.c index 0f8ae7f6989..1c33aee6204 100644 --- a/dlls/crypt32/tests/encode.c +++ b/dlls/crypt32/tests/encode.c @@ -7964,6 +7964,7 @@ static void testPortPublicKeyInfo(void) CRYPT_DELETEKEYSET); ret = CryptAcquireContextA(&csp, cspName, MS_DEF_PROV, PROV_RSA_FULL, CRYPT_NEWKEYSET); + ok(ret,"CryptAcquireContextA failed"); testExportPublicKey(csp, &info); testImportPublicKey(csp, info); @@ -7972,6 +7973,7 @@ static void testPortPublicKeyInfo(void) CryptReleaseContext(csp, 0); ret = CryptAcquireContextA(&csp, cspName, MS_DEF_PROV, PROV_RSA_FULL, CRYPT_DELETEKEYSET); + ok(ret,"CryptAcquireContextA failed"); } START_TEST(encode) -- 2.11.4.GIT