]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
*** empty log message ***
authorJim Meyering <jim@meyering.net>
Thu, 17 Nov 2005 18:19:12 +0000 (18:19 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 17 Nov 2005 18:19:12 +0000 (18:19 +0000)
tests/acl [new file with mode: 0644]

diff --git a/tests/acl b/tests/acl
new file mode 100644 (file)
index 0000000..28995c1
--- /dev/null
+++ b/tests/acl
@@ -0,0 +1,18 @@
+if ! getfacl --version 2> /dev/null 1>&2 || \
+   ! setfacl --version 2> /dev/null 1>&2 ; then
+  cat <<EOF 1>&2
+**************************************
+This test requires getfacl and setfacl.
+**************************************
+EOF
+  (exit 77); exit 77
+fi
+
+if ! grep '^bin:' /etc/passwd 2> /dev/null 1>&2 ; then
+  cat <<EOF 1>&2
+**************************************
+This test requires a local user named bin.
+**************************************
+EOF
+  (exit 77); exit 77
+fi