diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2013-04-07 02:16:04 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2013-04-07 02:16:04 +0000 |
commit | e08afd285004110ae16146ef6570bc455cd7fc40 (patch) | |
tree | d732b5890d478bc5c4b32ddc51d637bc40deb068 /regress/usr.bin/ssh/rekey.sh | |
parent | 5bf4d65f11b480cfece5a62d002405837739489c (diff) |
use -E option for ssh and sshd to write debuging logs to ssh{,d}.log and
save the output from any failing tests. If a test fails the debug output
from ssh and sshd for the failing tests (and only the failing tests) should
be available in failed-ssh{,d}.log.
Diffstat (limited to 'regress/usr.bin/ssh/rekey.sh')
-rw-r--r-- | regress/usr.bin/ssh/rekey.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/regress/usr.bin/ssh/rekey.sh b/regress/usr.bin/ssh/rekey.sh index d8c55a95b5c..e886db2856b 100644 --- a/regress/usr.bin/ssh/rekey.sh +++ b/regress/usr.bin/ssh/rekey.sh @@ -1,4 +1,4 @@ -# $OpenBSD: rekey.sh,v 1.2 2013/04/06 06:00:22 dtucker Exp $ +# $OpenBSD: rekey.sh,v 1.3 2013/04/07 02:16:03 dtucker Exp $ # Placed in the Public Domain. tid="rekey during transfer data" @@ -15,8 +15,7 @@ for s in 16 1k 128k 256k; do rm -f ${COPY} cat $DATA | \ ${SSH} -oCompression=no -oRekeyLimit=$s \ - -v -F $OBJ/ssh_proxy somehost "cat > ${COPY}" \ - 2> ${LOG} + -v -F $OBJ/ssh_proxy somehost "cat > ${COPY}" if [ $? -ne 0 ]; then fail "ssh failed" fi |