broken-pipe.sh revision 1.1
1tid="broken pipe test"
2
3for i in 1 2 3 4; do
4        ssh -2 -F $OBJ/ssh_config nexthost echo $i | true
5	r=$?
6	if [ $r -ne 0 ]; then
7		fail "broken pipe returns $r"
8	fi
9done
10