From 2f67a3dc3253b2fee472719eb5b8b02864848179 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Sun, 29 Dec 2024 16:43:34 +0100 Subject: Fix the sporadic test failure in 30-test_evp_extra.t MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #26276 Reviewed-by: Saša Nedvědický Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/26269) --- test/evp_extra_test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/evp_extra_test.c') diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 674180de35..b9124d02b5 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)); -- cgit v1.2.3