Skip to content

Commit

Permalink
upstream: Re-enable ssh-dss tests
Browse files Browse the repository at this point in the history
... if ssh is compiled with DSA support

OpenBSD-Regress-ID: bbfaf8c17f2b50a2d46ac35cb97af99b990c990d
  • Loading branch information
daztucker committed Jun 18, 2024
1 parent dabc2c7 commit de1c2e7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion regress/test-exec.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $OpenBSD: test-exec.sh,v 1.116 2024/06/18 06:14:27 anton Exp $
# $OpenBSD: test-exec.sh,v 1.117 2024/06/18 08:11:48 dtucker Exp $
# Placed in the Public Domain.

#SUDO=sudo
Expand Down Expand Up @@ -845,6 +845,10 @@ esac

if test "$REGRESS_INTEROP_DROPBEAR" = "yes" ; then
trace Create dropbear keys and add to authorized_keys
kt="rsa ecdsa ed25519"
if $SSH -Q key-plain | grep ssh-dss >/dev/null; then
kt="$kt dss"
fi
mkdir -p $OBJ/.dropbear
for i in rsa ecdsa ed25519; do
if [ ! -f "$OBJ/.dropbear/id_$i" ]; then
Expand Down

0 comments on commit de1c2e7

Please sign in to comment.