summaryrefslogtreecommitdiff
path: root/regress/usr.bin/ssh/broken-pipe.sh
blob: 89ea8a91497600087c2311c94a015f4b0775b6ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
tid="broken pipe test"

for p in 1 2; 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