- dtucker@cvs.openbsd.org 2013/05/17 01:32:11
[regress/integrity.sh] don't print output from ssh before getting it (it's available in ssh.log)
This commit is contained in:
parent
b8b96b0aa6
commit
34035be27b
|
@ -55,6 +55,9 @@
|
||||||
- TIMEOUT is a read-only variable in some shells
|
- TIMEOUT is a read-only variable in some shells
|
||||||
- not all greps have -q so redirect to /dev/null instead.
|
- not all greps have -q so redirect to /dev/null instead.
|
||||||
(ID sync only)
|
(ID sync only)
|
||||||
|
- dtucker@cvs.openbsd.org 2013/05/17 01:32:11
|
||||||
|
[regress/integrity.sh]
|
||||||
|
don't print output from ssh before getting it (it's available in ssh.log)
|
||||||
- (dtucker) [regress/bsd.regress.mk] Remove unused file. We've never used it
|
- (dtucker) [regress/bsd.regress.mk] Remove unused file. We've never used it
|
||||||
in portable and it's long gone in openbsd.
|
in portable and it's long gone in openbsd.
|
||||||
- (dtucker) [regress/integrity.sh]. Force fixed Diffie-Hellman key exchange
|
- (dtucker) [regress/integrity.sh]. Force fixed Diffie-Hellman key exchange
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $OpenBSD: integrity.sh,v 1.9 2013/04/07 02:16:03 dtucker Exp $
|
# $OpenBSD: integrity.sh,v 1.10 2013/05/17 01:32:11 dtucker Exp $
|
||||||
# Placed in the Public Domain.
|
# Placed in the Public Domain.
|
||||||
|
|
||||||
tid="integrity"
|
tid="integrity"
|
||||||
|
@ -52,7 +52,7 @@ for m in $macs; do
|
||||||
aes*gcm*) macopt="-c $m";;
|
aes*gcm*) macopt="-c $m";;
|
||||||
*) macopt="-m $m";;
|
*) macopt="-m $m";;
|
||||||
esac
|
esac
|
||||||
verbose "test $tid: $m @$off $output"
|
verbose "test $tid: $m @$off"
|
||||||
${SSH} $macopt -2F $OBJ/ssh_proxy -o "$pxy" \
|
${SSH} $macopt -2F $OBJ/ssh_proxy -o "$pxy" \
|
||||||
999.999.999.999 'printf "%4096s" " "' >/dev/null
|
999.999.999.999 'printf "%4096s" " "' >/dev/null
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
|
|
Loading…
Reference in New Issue