summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/regress/broken-pipe.sh
blob: a416f7a3b52ca3f0337bcebb2c28b9da5491b781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#	$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
OpenPOWER on IntegriCloud