diff options
author | 2002-02-18 14:30:12 +0000 | |
---|---|---|
committer | 2002-02-18 14:30:12 +0000 | |
commit | 2414f540ad1b8ce4252efd4513426f7ee99b8570 (patch) | |
tree | bbda4dbda74ca63f6c912573ac39faa432cbfa55 | |
parent | change the dma memory allocation to use kernel_map, not kmem_map. (diff) | |
download | wireguard-openbsd-2414f540ad1b8ce4252efd4513426f7ee99b8570.tar.xz wireguard-openbsd-2414f540ad1b8ce4252efd4513426f7ee99b8570.zip |
call fatal on ^C, print ok on success
-rw-r--r-- | regress/usr.bin/ssh/test-exec.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index ff437620e4d..57e8caba786 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.8 2002/02/18 12:52:26 markus Exp $ +# $OpenBSD: test-exec.sh,v 1.9 2002/02/18 14:30:12 markus Exp $ # Placed in the Public Domain. PORT=4242 @@ -81,7 +81,7 @@ fatal () RESULT=0 PIDFILE=$OBJ/pidfile -trap cleanup 3 2 +trap fatal 3 2 # create server config cat << EOF > $OBJ/sshd_config @@ -176,7 +176,7 @@ start_sshd () # kill sshd cleanup if [ $RESULT -eq 0 ]; then - trace ok $tid + verbose ok $tid else echo failed $tid fi |