diff options
Diffstat (limited to 'regress/usr.bin/ssh/test-exec.sh')
-rw-r--r-- | regress/usr.bin/ssh/test-exec.sh | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index 618b9b072d0..c7d20e74a49 100644 --- a/regress/usr.bin/ssh/test-exec.sh +++ b/regress/usr.bin/ssh/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.6 2002/02/18 10:09:20 markus Exp $ +# $OpenBSD: test-exec.sh,v 1.7 2002/02/18 11:40:42 markus Exp $ # Placed in the Public Domain. PORT=4242 @@ -51,11 +51,19 @@ cleanup () trace () { - if [ "X$TEST_DEBUG_SSH" = "Xyes" ]; then + if [ "X$TEST_SSH_TRACE" = "Xyes" ]; then echo "$@" fi } +verbose () +{ + if [ "X$TEST_SSH_QUIET" != "Xyes" ]; then + printf "$@" + fi +} + + fail () { RESULT=1 |