mirror of git://anongit.mindrot.org/openssh.git
skip tests that use multiplexing on Windows
Some tests here use multiplexing, skip these if DISABLE_FD_PASSING is set. Should unbreak tests on Windows.
This commit is contained in:
parent
50080fa42f
commit
0d96b1506b
|
@ -74,6 +74,9 @@ if [ $r -ne 23 ]; then
|
||||||
fail "ssh failed"
|
fail "ssh failed"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if config_defined DISABLE_FD_PASSING ; then
|
||||||
|
verbose "skipping multiplexing tests"
|
||||||
|
else
|
||||||
verbose "multiplexed command timeout"
|
verbose "multiplexed command timeout"
|
||||||
(cat $OBJ/sshd_proxy.orig ; echo "ChannelTimeout session:command=1") \
|
(cat $OBJ/sshd_proxy.orig ; echo "ChannelTimeout session:command=1") \
|
||||||
> $OBJ/sshd_proxy
|
> $OBJ/sshd_proxy
|
||||||
|
@ -108,6 +111,7 @@ test -f $OBJ/finished.1 && fail "first mux process completed"
|
||||||
test -f $OBJ/finished.2 && fail "second mux process completed"
|
test -f $OBJ/finished.2 && fail "second mux process completed"
|
||||||
test -f $OBJ/finished.3 || fail "third mux process did not complete"
|
test -f $OBJ/finished.3 || fail "third mux process did not complete"
|
||||||
close_mux
|
close_mux
|
||||||
|
fi
|
||||||
|
|
||||||
# Set up a "slow sftp server" that sleeps before executing the real one.
|
# Set up a "slow sftp server" that sleeps before executing the real one.
|
||||||
cat > $OBJ/slow-sftp-server.sh << _EOF
|
cat > $OBJ/slow-sftp-server.sh << _EOF
|
||||||
|
|
Loading…
Reference in New Issue