Module: wine Branch: master Commit: ca18de9512f2ad42308a7ef4052a671ad283a905 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ca18de9512f2ad42308a7ef405...
Author: Ge van Geldorp ggeldorp@vmware.com Date: Tue Aug 25 12:40:28 2009 +0200
crypt32/tests: Remove test that crashes on Win7.
---
dlls/crypt32/tests/chain.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/dlls/crypt32/tests/chain.c b/dlls/crypt32/tests/chain.c index c880df9..8b4d36f 100644 --- a/dlls/crypt32/tests/chain.c +++ b/dlls/crypt32/tests/chain.c @@ -75,10 +75,8 @@ static void testCreateCertChainEngine(void) /* Crash ret = pCertCreateCertificateChainEngine(NULL, NULL); ret = pCertCreateCertificateChainEngine(NULL, &engine); - */ ret = pCertCreateCertificateChainEngine(&config, NULL); - ok(!ret && GetLastError() == E_INVALIDARG, - "Expected E_INVALIDARG, got %08x\n", GetLastError()); + */ ret = pCertCreateCertificateChainEngine(&config, &engine); ok(!ret && GetLastError() == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", GetLastError());