Juan Lang : crypt32: Include more info about skipped checks in skip message .

Alexandre Julliard julliard at winehq.org
Thu Feb 12 11:14:42 CST 2009


Module: wine
Branch: master
Commit: de2c6b8640cd2c4bbfd1d69bc7c2ba0c9a11e21d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=de2c6b8640cd2c4bbfd1d69bc7c2ba0c9a11e21d

Author: Juan Lang <juan.lang at gmail.com>
Date:   Tue Feb 10 10:52:33 2009 -0800

crypt32: Include more info about skipped checks in skip message.

---

 dlls/crypt32/tests/chain.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/tests/chain.c b/dlls/crypt32/tests/chain.c
index 67b7e92..0b5263b 100644
--- a/dlls/crypt32/tests/chain.c
+++ b/dlls/crypt32/tests/chain.c
@@ -1863,7 +1863,9 @@ static void checkChainPolicyStatus(LPCSTR policy, const ChainPolicyCheck *check,
                  testIndex, check->status.dwError, policyStatus.dwError);
             if (policyStatus.dwError != check->status.dwError)
             {
-                skip("error doesn't match, not checking indexes\n");
+                skip("%s[%d]: error %08x doesn't match expected %08x, not checking indexes\n",
+                 HIWORD(policy) ? policy : num_to_str(LOWORD(policy)),
+                 testIndex, policyStatus.dwError, check->status.dwError);
                 pCertFreeCertificateChain(chain);
                 return;
             }




More information about the wine-cvs mailing list