[openssh-commits] [openssh] 01/01: Skip connection-timeout when missing FD passing.

git+noreply at mindrot.org git+noreply at mindrot.org
Wed Jan 25 21:59:19 AEDT 2023


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit c3ffb54b4fc5e608206037921db6ccbc2f5ab25f
Author: Darren Tucker <dtucker at dtucker.net>
Date:   Wed Jan 25 21:58:40 2023 +1100

    Skip connection-timeout when missing FD passing.
    
    This tests uses multiplexing which uses file descriptor passing, so
    skip it if we don't have that.  Fixes test failures on Cygwin.
---
 regress/connection-timeout.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/regress/connection-timeout.sh b/regress/connection-timeout.sh
index 6c0c0b22..c77abb38 100644
--- a/regress/connection-timeout.sh
+++ b/regress/connection-timeout.sh
@@ -2,6 +2,9 @@
 #	Placed in the Public Domain.
 
 tid="unused connection timeout"
+if config_defined DISABLE_FD_PASSING ; then
+       skip "not supported on this platform"
+fi
 
 CTL=$OBJ/ctl-sock
 cp $OBJ/sshd_proxy $OBJ/sshd_proxy.orig

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list