summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2023-02-20 18:24:39 +1100
committerDarren Tucker <dtucker@dtucker.net>2023-02-20 20:01:29 +1100
commitab69dda05d5268454209f529fa80f477e60d846a (patch)
treec50ba25fdb3c606cc7310423c0774d889881e5ef /regress
parent2a7e3449908571af601a4c2d12ab140096442e47 (diff)
downloadopenssh-git-ab69dda05d5268454209f529fa80f477e60d846a.tar.gz
Always use the openssl binary configure tells us.
This fixes tests on platforms that do not have the openssl tool installed at all.
Diffstat (limited to 'regress')
-rw-r--r--regress/test-exec.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index df43f021..325393ce 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -102,7 +102,8 @@ CONCH=conch
# Tools used by multiple tests
NC=$OBJ/netcat
-OPENSSL_BIN="${OPENSSL_BIN:-openssl}"
+# Always use the one configure tells us to, even if that's empty.
+#OPENSSL_BIN="${OPENSSL_BIN:-openssl}"
if [ "x$TEST_SSH_SSH" != "x" ]; then
SSH="${TEST_SSH_SSH}"