crypt32/tests: Remove test that crashes on Win7.

This commit is contained in:
Ge van Geldorp 2009-08-25 12:40:28 +02:00 committed by Alexandre Julliard
parent 995e553715
commit ca18de9512
1 changed files with 1 additions and 3 deletions

View File

@ -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());