Branch
Hash :
c731f331
Author :
Date :
2025-06-09T12:51:14
file-has-acl tests: Avoid test failure on Cygwin. * modules/file-has-acl-tests (Makefile.am): Add host_os to the TESTS_ENVIRONMENT. * tests/test-file-has-acl-2.sh: On Cygwin, skip this test.
#!/bin/sh
# Test file-has-acl on the file system of the build directory, which may be
# a local file system or NFS mounted.
. "${srcdir=.}/init.sh"; path_prepend_ .
# Around 2025-06-06, this test started failing on the GitHub CI machines.
# Cause unknown.
case "$host_os" in
cygwin*) Exit 77 ;;
esac
TMPDIR=`pwd`
export TMPDIR
$BOURNE_SHELL "${srcdir}/test-file-has-acl.sh"
Exit $?