diff options
author | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2024-12-29 16:43:34 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2025-01-06 20:46:08 +0100 |
commit | 2f67a3dc3253b2fee472719eb5b8b02864848179 (patch) | |
tree | 86bc607e2a32402e592be35eca9e9b600a4ef9b7 /test | |
parent | Run fuzz-checker workflow on ubuntu-24.04 (diff) | |
download | openssl-2f67a3dc3253b2fee472719eb5b8b02864848179.tar.xz openssl-2f67a3dc3253b2fee472719eb5b8b02864848179.zip |
Fix the sporadic test failure in 30-test_evp_extra.t
Fixes #26276
Reviewed-by: Saša Nedvědický <sashan@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26269)
Diffstat (limited to '')
-rw-r--r-- | test/evp_extra_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
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)); |