diff options
Diffstat (limited to 'regress/test-exec.sh')
-rw-r--r-- | regress/test-exec.sh | 12 |
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 |
292 | REGRESS_INTEROP_PUTTY=no | 292 | REGRESS_INTEROP_PUTTY=no |
293 | if test -x $PUTTYGEN -a -x $PLINK && [[ $SCRIPT = *putty* ]] ; then | 293 | if test -x $PUTTYGEN -a -x $PLINK ; then |
294 | REGRESS_INTEROP_PUTTY=yes | ||
295 | fi | ||
296 | case "$SCRIPT" in | ||
297 | *putty*) ;; | ||
298 | *) REGRESS_INTEROP_PUTTY=no ;; | ||
299 | esac | ||
300 | |||
301 | if 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 |