mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-16 01:22:18 +03:00
* tests/test-file-has-acl-1.sh: New file. * tests/test-file-has-acl-2.sh: New file. * tests/test-set-mode-acl-1.sh: New file. * tests/test-set-mode-acl-2.sh: New file. * tests/test-copy-acl-1.sh: New file. * tests/test-copy-acl-2.sh: New file. * modules/acl-tests (Files): Add them. (Makefile.am): Add them to TESTS.
14 lines
215 B
Bash
Executable File
14 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Test copy-acl on the file system of /var/tmp, which usually is a local
|
|
# file system.
|
|
|
|
if test -d /var/tmp; then
|
|
TMPDIR=/var/tmp
|
|
else
|
|
TMPDIR=/tmp
|
|
fi
|
|
export TMPDIR
|
|
|
|
exec "${srcdir}/test-copy-acl.sh"
|