summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2024-01-05 11:22:28 +0100
committerTomas Mraz <tomas@openssl.org>2024-01-23 18:10:10 +0100
commitfcd4466c4e9f1b58cf69cd06e6e41c2841bb60b5 (patch)
tree25b4d5369ffca19b51748d46dad377f4a23babfd
parent9d46ae981cd0b279d8d3c06c01d0dff92f90420d (diff)
tlsfuzzer.sh: Run openssl version on the built app and not system one
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> (Merged from https://github.com/openssl/openssl/pull/23342) (cherry picked from commit 150b3b18dfde317621a6bf26acfe0d06193e52fd)
-rw-r--r--test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh b/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh
index a9f781de33..43b667244e 100644
--- a/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh
+++ b/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh
@@ -32,7 +32,7 @@ export LD_LIBRARY_PATH="$O_LIB:$LD_LIBRARY_PATH"
export OPENSSL_ROOT_DIR="$O_LIB"
# Check/Set openssl version
-OPENSSL_VERSION=`openssl version | cut -f 2 -d ' '`
+OPENSSL_VERSION=$(${O_EXE}/openssl version | cut -f 2 -d ' ')
CLI="${O_EXE}/openssl"
SERV="${O_EXE}/openssl"