[openssh-commits] [openssh] 01/01: disable agent-restrict test on minix3

git+noreply at mindrot.org git+noreply at mindrot.org
Tue Feb 22 11:18:09 AEDT 2022


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

djm pushed a commit to branch master
in repository openssh.

commit 7c0d4ce911d5c58b6166b2db754a4e91f352adf5
Author: Damien Miller <djm at mindrot.org>
Date:   Tue Feb 22 11:14:51 2022 +1100

    disable agent-restrict test on minix3
    
    Minix seems to have a platform-wide limit on the number of
    select(2) syscalls that can be concurrently issued. This test
    seems to exceed this limit.
    
    Refer to:
    
    https://github.com/Stichting-MINIX-Research-Foundation/minix/blob/R3.3.0/minix/servers/vfs/select.c#L114
    https://github.com/Stichting-MINIX-Research-Foundation/minix/blob/R3.3.0/minix/servers/vfs/select.c#L30-L31
---
 .github/configs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/configs b/.github/configs
index 87f2e46b..853da58a 100755
--- a/.github/configs
+++ b/.github/configs
@@ -156,7 +156,9 @@ case "${TARGET_HOST}" in
 	LIBCRYPTOFLAGS="--without-openssl --disable-security-key"
 	# Minix does not have a loopback interface so we have to skip any
 	# test that relies on one.
-	T="addrmatch brokenkeys cfgmatch cfgmatchlisten cfgparse connect
+	# Also, Minix seems to be very limited in the number of select()
+	# calls that can be operating concurrently, so prune additional tests for that.
+	T="addrmatch agent-restrict brokenkeys cfgmatch cfgmatchlisten cfgparse connect
 	    connect-uri exit-status forward-control forwarding hostkey-agent
 	    key-options keyscan knownhosts-command login-timeout multiplex
 	    reconfigure reexec rekey scp scp-uri scp3 sftp sftp-badcmds

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


More information about the openssh-commits mailing list