mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-03 08:12:05 +00:00
Skip agent-peereid test on macos13.
sudo -S nobody doesn't work on the github runners (probably a permission issue) so skip that test.
This commit is contained in:
parent
b356b8e916
commit
77cca2c4b1
8
.github/configs
vendored
8
.github/configs
vendored
@ -287,7 +287,8 @@ case "${TARGET_HOST}" in
|
||||
;;
|
||||
esac
|
||||
|
||||
case "`./config.guess`" in
|
||||
host=`./config.guess`
|
||||
case "$host" in
|
||||
*cygwin)
|
||||
SUDO=""
|
||||
# Don't run compat tests on cygwin as they don't currently compile.
|
||||
@ -298,6 +299,11 @@ case "`./config.guess`" in
|
||||
# modern versions don't ship with libcrypto.
|
||||
LIBCRYPTOFLAGS="--without-openssl"
|
||||
TEST_TARGET=t-exec
|
||||
case "$host" in
|
||||
*-darwin22.*)
|
||||
# sudo -S nobody doesn't work on macos 13 for some reason.
|
||||
SKIP_LTESTS="agent-getpeereid" ;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user