From 77c979faf47b777afb07c325f738d8be882f6a97 Mon Sep 17 00:00:00 2001 From: "Randall S. Becker" Date: Mon, 22 Jun 2026 13:28:51 -0600 Subject: [PATCH] Fix unqualified reference to openssl in 25-test_verify_store.t This problem resulted in the wrong location of openssl being used for one step in subtest 7. The error condition is hidden if openssl appears in the PATH. Resolves: https://github.com/openssl/openssl/issues/31496 Fixes: 3638ffc38015 "Refactor cache_objects() loop and object type handling" Signed-off-by: Randall S. Becker Reviewed-by: Nikola Pajkovsky Reviewed-by: David von Oheimb Reviewed-by: Matt Caswell Reviewed-by: Eugene Syromiatnikov Reviewed-by: Bob Beck MergeDate: Wed Jun 24 08:47:58 2026 (Merged from https://github.com/openssl/openssl/pull/31647) --- test/recipes/25-test_verify_store.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/recipes/25-test_verify_store.t b/test/recipes/25-test_verify_store.t index 6338b862b55..0db8e6238d0 100644 --- a/test/recipes/25-test_verify_store.t +++ b/test/recipes/25-test_verify_store.t @@ -73,7 +73,7 @@ SKIP: { $CAcert ); open(my $out, '>', $CAobjects) or die $!; - my $pubkey = qx(openssl x509 -pubkey -noout -in $CAcert); + my $pubkey = run(app(["openssl", "x509", "-pubkey", "-noout", "-in", $CAcert])); print $out $pubkey; my @files; push @files, srctop_file("test", "certs", "dhp2048.pem") -- 2.47.3