freebsd-dev/regress/broken-pipe.sh

16 lines
367 B
Bash
Raw Normal View History

2015-07-02 13:15:34 +00:00
# $OpenBSD: broken-pipe.sh,v 1.5 2015/03/03 22:35:19 markus Exp $
2002-06-27 22:31:32 +00:00
# Placed in the Public Domain.
tid="broken pipe test"
2015-07-02 13:15:34 +00:00
for p in ${SSH_PROTOCOLS}; do
2002-06-27 22:31:32 +00:00
trace "protocol $p"
for i in 1 2 3 4; do
${SSH} -$p -F $OBJ/ssh_config_config nexthost echo $i 2> /dev/null | true
r=$?
if [ $r -ne 0 ]; then
fail "broken pipe returns $r for protocol $p"
fi
done
done