You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
367 B
15 lines
367 B
# $OpenBSD: broken-pipe.sh,v 1.5 2015/03/03 22:35:19 markus Exp $ |
|
# Placed in the Public Domain. |
|
|
|
tid="broken pipe test" |
|
|
|
for p in ${SSH_PROTOCOLS}; do |
|
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
|
|
|