diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2023-10-20 09:37:07 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2023-10-20 11:28:20 +0200 |
commit | c54a50359b9cecddbf3ffcdc26efcb3cd6071ec1 (patch) | |
tree | cb433df6f5e3fe5f8023af45bbd682c5ecfa1915 /regress/test-exec.sh | |
parent | upstream: Add interop test with Dropbear. (diff) | |
download | openssh-c54a50359b9cecddbf3ffcdc26efcb3cd6071ec1.tar.xz openssh-c54a50359b9cecddbf3ffcdc26efcb3cd6071ec1.zip |
upstream: Allow overriding the locations of the Dropbear binaries
similar to what we do for the PuTTY ones.
OpenBSD-Regress-ID: 7de0e00518fb0c8fdc5f243b7f82f523c936049c
Diffstat (limited to 'regress/test-exec.sh')
-rw-r--r-- | regress/test-exec.sh | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh index 995b48904..f39e46549 100644 --- a/regress/test-exec.sh +++ b/regress/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.100 2023/10/20 06:56:45 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.101 2023/10/20 07:37:07 dtucker Exp $ # Placed in the Public Domain. #SUDO=sudo @@ -157,6 +157,18 @@ if [ "x$TEST_SSH_CONCH" != "x" ]; then *) CONCH=`which ${TEST_SSH_CONCH} 2>/dev/null` ;; esac fi +if [ "x$TEST_SSH_DROPBEAR" != "x" ]; then + DROPBEAR="${TEST_SSH_DROPBEAR}" +fi +if [ "x$TEST_SSH_DBCLIENT" != "x" ]; then + DBCLIENT="${TEST_SSH_DBCLIENT}" +fi +if [ "x$TEST_SSH_DROPBEARKEY" != "x" ]; then + DROPBEARKEY="${TEST_SSH_DROPBEARKEY}" +fi +if [ "x$TEST_SSH_DROPBEARCONVERT" != "x" ]; then + DROPBEARCONVERT="${TEST_SSH_DROPBEARCONVERT}" +fi if [ "x$TEST_SSH_PKCS11_HELPER" != "x" ]; then SSH_PKCS11_HELPER="${TEST_SSH_PKCS11_HELPER}" fi |