From: Bernd Edlinger Date: Sun, 29 Dec 2024 15:43:34 +0000 (+0100) Subject: Fix the sporadic test failure in 30-test_evp_extra.t X-Git-Tag: openssl-3.5.0-alpha1~772 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f67a3dc3253b2fee472719eb5b8b02864848179;p=thirdparty%2Fopenssl.git Fix the sporadic test failure in 30-test_evp_extra.t Fixes #26276 Reviewed-by: Saša Nedvědický Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/26269) --- diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 674180de356..b9124d02b56 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -5939,7 +5939,8 @@ static int test_evp_cipher_pipeline(void) return 0; if (!TEST_ptr(pipeline_cipher = EVP_CIPHER_fetch(testctx, "AES-256-GCM", "provider=fake-pipeline")) - || !TEST_ptr(cipher = EVP_CIPHER_fetch(testctx, "AES-256-GCM", testpropq)) + || !TEST_ptr(cipher = EVP_CIPHER_fetch(testctx, "AES-256-GCM", + "provider!=fake-pipeline")) || !TEST_ptr(ctx = EVP_CIPHER_CTX_new())) goto end; memset(key, 0x01, sizeof(key));