summaryrefslogtreecommitdiff
path: root/regress/test-exec.sh
diff options
context:
space:
mode:
Diffstat (limited to 'regress/test-exec.sh')
-rw-r--r--regress/test-exec.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 89470682b..f05c671cd 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: test-exec.sh,v 1.32 2008/06/09 18:06:32 dtucker Exp $ 1# $OpenBSD: test-exec.sh,v 1.33 2008/06/10 15:21:41 dtucker Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4#SUDO=sudo 4#SUDO=sudo
@@ -290,7 +290,15 @@ chmod 644 $OBJ/authorized_keys_$USER
290# If PuTTY is present and we are running a PuTTY test, prepare keys and 290# If PuTTY is present and we are running a PuTTY test, prepare keys and
291# configuration 291# configuration
292REGRESS_INTEROP_PUTTY=no 292REGRESS_INTEROP_PUTTY=no
293if test -x $PUTTYGEN -a -x $PLINK && [[ $SCRIPT = *putty* ]] ; then 293if test -x $PUTTYGEN -a -x $PLINK ; then
294 REGRESS_INTEROP_PUTTY=yes
295fi
296case "$SCRIPT" in
297*putty*) ;;
298*) REGRESS_INTEROP_PUTTY=no ;;
299esac
300
301if test "$REGRESS_INTEROP_PUTTY" = "yes" ; then
294 mkdir -p ${OBJ}/.putty 302 mkdir -p ${OBJ}/.putty
295 303
296 # Add a PuTTY key to authorized_keys 304 # Add a PuTTY key to authorized_keys