From: Sven Püschel <Sven\u2007Pschel(a)akarisu.de> As the signature verification is already implemented, there is no more need to skip the signature tests. This may be related to the VerifySignature following fix: 1d0551ca49f ("dssenh: Finalize the hash if necessary in CPVerifySignature().") Signed-off-by: Sven Püschel <Sven Püschel(a)akarisu.de> --- dlls/dssenh/tests/dssenh.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dlls/dssenh/tests/dssenh.c b/dlls/dssenh/tests/dssenh.c index fb9ab820330..c5e2d0ba43d 100644 --- a/dlls/dssenh/tests/dssenh.c +++ b/dlls/dssenh/tests/dssenh.c @@ -963,11 +963,6 @@ static void test_signhash_array(HCRYPTPROV hProv, const struct signature_test *t /* Verify signed hash 1 */ result = CryptVerifySignatureA(hHash1, signValue1, sizeof(signValue1), pubKey, NULL, 0); - if (!result) - { - skip("skipping sign tests\n"); - return; - } ok(result, "Failed to verify signature, got %lx\n", GetLastError()); result = CryptCreateHash(hProv, CALG_SHA, 0, 0, &hHash2); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6314