summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2023-02-01 17:17:26 +1100
committerDarren Tucker <dtucker@dtucker.net>2023-02-01 17:19:33 +1100
commit79efd95ab5ff99f4cb3a955e2d713b3f54fb807e (patch)
tree6b657ce74fb16c7c643f9c05f42402769c6fc3f6
parent6b508c4e039619842bcf5a16f8a6b08dd6bec44a (diff)
Skip connection-timeout test on minix3.
Minix 3's Unix domain sockets don't seem to work the way we expect, so skip connection-timeout test on that platform. While there, group together all similarly skipped tests and explicitly comment.
-rwxr-xr-x.github/configs8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/configs b/.github/configs
index badee4a9..bdd5ddbd 100755
--- a/.github/configs
+++ b/.github/configs
@@ -246,12 +246,14 @@ case "${TARGET_HOST}" in
# 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 dynamic-forward
- exit-status forward-control forwarding hostkey-agent
- key-options keyscan knownhosts-command login-timeout multiplex
+ connect connect-uri exit-status forwarding hostkey-agent
+ key-options keyscan knownhosts-command login-timeout
reconfigure reexec rekey scp scp-uri scp3 sftp sftp-badcmds
sftp-batch sftp-cmds sftp-glob sftp-perm sftp-uri stderr-data
transfer"
+ # Unix domain sockets don't work quite like we expect, so also skip any tests
+ # that use multiplexing.
+ T="$T connection-timeout dynamic-forward forward-control multiplex"
SKIP_LTESTS="$(echo $T)"
TEST_TARGET=t-exec
SUDO=""