summaryrefslogtreecommitdiff
path: root/regress/multiplex.sh
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2014-12-22 01:14:49 +0000
committerDamien Miller <djm@mindrot.org>2014-12-22 13:18:41 +1100
commit6b40567ed722df98593ad8e6a2d2448fc2b4b151 (patch)
tree5c4b545fbc3b113f813fb823318b306cbc083b61 /regress/multiplex.sh
parenta5375ccb970f49dddf7d0ef63c9b713ede9e7260 (diff)
upstream commit
poll changes to netcat (usr.bin/netcat.c r1.125) broke this test; fix it by ensuring more stdio fds are sent to devnull
Diffstat (limited to 'regress/multiplex.sh')
-rw-r--r--regress/multiplex.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/multiplex.sh b/regress/multiplex.sh
index 8ee140be6..d36efad0a 100644
--- a/regress/multiplex.sh
+++ b/regress/multiplex.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: multiplex.sh,v 1.25 2014/07/22 01:32:12 djm Exp $ 1# $OpenBSD: multiplex.sh,v 1.26 2014/12/22 01:14:49 djm Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4CTL=/tmp/openssh.regress.ctl-sock.$$ 4CTL=/tmp/openssh.regress.ctl-sock.$$
@@ -90,7 +90,7 @@ cmp ${DATA} ${COPY} || fail "scp: corrupted copy of ${DATA}"
90rm -f ${COPY} 90rm -f ${COPY}
91verbose "test $tid: forward" 91verbose "test $tid: forward"
92trace "forward over TCP/IP and check result" 92trace "forward over TCP/IP and check result"
93$NC -l 127.0.0.1 $((${PORT} + 1)) < ${DATA} & 93$NC -l 127.0.0.1 $((${PORT} + 1)) < ${DATA} > /dev/null &
94netcat_pid=$! 94netcat_pid=$!
95${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -L127.0.0.1:$((${PORT} + 2)):127.0.0.1:$((${PORT} + 1)) otherhost >>$TEST_SSH_LOGFILE 2>&1 95${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -L127.0.0.1:$((${PORT} + 2)):127.0.0.1:$((${PORT} + 1)) otherhost >>$TEST_SSH_LOGFILE 2>&1
96$NC -d 127.0.0.1 $((${PORT} + 2)) > ${COPY} < /dev/null 96$NC -d 127.0.0.1 $((${PORT} + 2)) > ${COPY} < /dev/null
@@ -99,11 +99,11 @@ kill $netcat_pid 2>/dev/null
99rm -f ${COPY} $OBJ/unix-[123].fwd 99rm -f ${COPY} $OBJ/unix-[123].fwd
100 100
101trace "forward over UNIX and check result" 101trace "forward over UNIX and check result"
102$NC -Ul $OBJ/unix-1.fwd < ${DATA} & 102$NC -Ul $OBJ/unix-1.fwd < ${DATA} > /dev/null &
103netcat_pid=$! 103netcat_pid=$!
104${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -L$OBJ/unix-2.fwd:$OBJ/unix-1.fwd otherhost >>$TEST_SSH_LOGFILE 2>&1 104${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -L$OBJ/unix-2.fwd:$OBJ/unix-1.fwd otherhost >>$TEST_SSH_LOGFILE 2>&1
105${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -R$OBJ/unix-3.fwd:$OBJ/unix-2.fwd otherhost >>$TEST_SSH_LOGFILE 2>&1 105${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -R$OBJ/unix-3.fwd:$OBJ/unix-2.fwd otherhost >>$TEST_SSH_LOGFILE 2>&1
106$NC -d -U $OBJ/unix-3.fwd > ${COPY} </dev/null 106$NC -d -U $OBJ/unix-3.fwd > ${COPY} < /dev/null
107cmp ${DATA} ${COPY} || fail "ssh: corrupted copy of ${DATA}" 107cmp ${DATA} ${COPY} || fail "ssh: corrupted copy of ${DATA}"
108kill $netcat_pid 2>/dev/null 108kill $netcat_pid 2>/dev/null
109rm -f ${COPY} $OBJ/unix-[123].fwd 109rm -f ${COPY} $OBJ/unix-[123].fwd