coreutils: skip ls with acl test (#399751)

This commit is contained in:
Pavol Rusnak 2025-04-20 21:50:56 +02:00 committed by GitHub
commit 1c48435dce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,6 +97,9 @@ stdenv.mkDerivation rec {
# intermittent failures on builders, unknown reason
sed '2i echo Skipping du basic test && exit 77' -i ./tests/du/basic.sh
# fails when syscalls related to acl not being available, e.g. in sandboxed environment
sed '2i echo Skipping ls -al with acl test && exit 77' -i ./tests/ls/acl.sh
''
+ (optionalString (stdenv.hostPlatform.libc == "musl") (
concatStringsSep "\n" [