skip bash tests that use multiplexing on Windows with explicit if

This commit is contained in:
tgauth@bu.edu 2024-01-22 13:07:57 -05:00
parent 0c166db115
commit afd613528f

View File

@ -77,6 +77,7 @@ if [ $r -ne 23 ]; then
fail "ssh failed" fail "ssh failed"
fi fi
if [ "$os" != "windows" ]; then
if config_defined DISABLE_FD_PASSING ; then if config_defined DISABLE_FD_PASSING ; then
verbose "skipping multiplexing tests" verbose "skipping multiplexing tests"
else else
@ -115,6 +116,7 @@ else
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 fi
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