diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | regress/multiplex.sh | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -3,6 +3,8 @@ | |||
3 | a better solution, but this will have to do for now. | 3 | a better solution, but this will have to do for now. |
4 | - (djm) [regress/multiplex.sh] Instruct nc not to quit as soon as stdin | 4 | - (djm) [regress/multiplex.sh] Instruct nc not to quit as soon as stdin |
5 | is closed; avoid regress failures when stdin is /dev/null | 5 | is closed; avoid regress failures when stdin is /dev/null |
6 | - (djm) [regress/multiplex.sh] Use -d (detach stdin) flag to disassociate | ||
7 | nc from stdin, it's more portable | ||
6 | 8 | ||
7 | 20140730 | 9 | 20140730 |
8 | - OpenBSD CVS Sync | 10 | - OpenBSD CVS Sync |
diff --git a/regress/multiplex.sh b/regress/multiplex.sh index aaeba7f96..8ee140be6 100644 --- a/regress/multiplex.sh +++ b/regress/multiplex.sh | |||
@@ -93,7 +93,7 @@ trace "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} & |
94 | netcat_pid=$! | 94 | netcat_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 -q5 127.0.0.1 $((${PORT} + 2)) > ${COPY} < /dev/null | 96 | $NC -d 127.0.0.1 $((${PORT} + 2)) > ${COPY} < /dev/null |
97 | cmp ${DATA} ${COPY} || fail "ssh: corrupted copy of ${DATA}" | 97 | cmp ${DATA} ${COPY} || fail "ssh: corrupted copy of ${DATA}" |
98 | kill $netcat_pid 2>/dev/null | 98 | kill $netcat_pid 2>/dev/null |
99 | rm -f ${COPY} $OBJ/unix-[123].fwd | 99 | rm -f ${COPY} $OBJ/unix-[123].fwd |
@@ -103,7 +103,7 @@ $NC -Ul $OBJ/unix-1.fwd < ${DATA} & | |||
103 | netcat_pid=$! | 103 | netcat_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 -q5 -U $OBJ/unix-3.fwd > ${COPY} </dev/null | 106 | $NC -d -U $OBJ/unix-3.fwd > ${COPY} </dev/null |
107 | cmp ${DATA} ${COPY} || fail "ssh: corrupted copy of ${DATA}" | 107 | cmp ${DATA} ${COPY} || fail "ssh: corrupted copy of ${DATA}" |
108 | kill $netcat_pid 2>/dev/null | 108 | kill $netcat_pid 2>/dev/null |
109 | rm -f ${COPY} $OBJ/unix-[123].fwd | 109 | rm -f ${COPY} $OBJ/unix-[123].fwd |