summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2024-01-18 16:32:33 +0100
committerTomas Mraz <tomas@openssl.org>2024-01-23 18:10:30 +0100
commitb8405af3bedb4943d1462947932649eab92e5deb (patch)
treeb0ef5e5b05ccd63d8c3f82d31c487f23953ba834
parent0b6ea323d245234e4fc241e41d684ce81bb84bd3 (diff)
tlsfuzzer.sh: Make it more informative on errors
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 825b7cb16e0624d81421441949e843e9876c81f9)
-rw-r--r--test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh b/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh
index 43b667244e..9c2421f906 100644
--- a/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh
+++ b/test/recipes/95-test_external_tlsfuzzer_data/tlsfuzzer.sh
@@ -11,6 +11,7 @@
# OpenSSL external testing using the TLSFuzzer test suite
#
set -e
+set -x
PWD="$(pwd)"
@@ -31,12 +32,13 @@ export PATH="$O_EXE:$PATH"
export LD_LIBRARY_PATH="$O_LIB:$LD_LIBRARY_PATH"
export OPENSSL_ROOT_DIR="$O_LIB"
-# Check/Set openssl version
-OPENSSL_VERSION=$(${O_EXE}/openssl version | cut -f 2 -d ' ')
CLI="${O_EXE}/openssl"
SERV="${O_EXE}/openssl"
+# Check/Set openssl version
+OPENSSL_VERSION=$($CLI version | cut -f 2 -d ' ')
+
TMPFILE="${PWD}/tls-fuzzer.$$.tmp"
PSKFILE="${PWD}/tls-fuzzer.psk.$$.tmp"
@@ -51,6 +53,7 @@ echo " BLDTOP: $BLDTOP"
echo " OPENSSL_ROOT_DIR: $OPENSSL_ROOT_DIR"
echo " Python: $PYTHON"
echo " TESTDATADIR: $TESTDATADIR"
+echo " OPENSSL_VERSION: $OPENSSL_VERSION"
echo "------------------------------------------------------------------"
cd "${SRCTOP}/tlsfuzzer"