diff options
author | Jim Meyering <meyering@redhat.com> | 2011-10-08 17:57:01 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-10-08 17:57:01 +0200 |
commit | 11cb50ee6d20966abeed32cf61b5f26a984b7e7d (patch) | |
tree | 4e765f6c007a1154219b7806af1002f0f64d4f75 /tests | |
parent | fc4c062ffaf28f5aba63b287f3e44f90dfc8d0cb (diff) | |
download | coreutils-11cb50ee6d20966abeed32cf61b5f26a984b7e7d.tar.xz |
tests: avoid ls/slink-acl test failure on Solaris 10
* tests/ls/slink-acl: Use setfacl's "-m user::r" option rather than
less-portable "-m m::r". The latter did not work with Solaris 10's
version of setfacl. Reported by Bruno Haible in
http://thread.gmane.org/gmane.comp.gnu.coreutils.general/1726/focus=1737
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ls/slink-acl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ls/slink-acl b/tests/ls/slink-acl index f4d0a115d..124f8973c 100755 --- a/tests/ls/slink-acl +++ b/tests/ls/slink-acl @@ -22,7 +22,7 @@ print_ver_ ls require_setfacl_ touch k || framework_failure_ -setfacl -m m::r k || framework_failure_ +setfacl -m user::r k || framework_failure_ ln -s k s || framework_failure_ set _ $(ls -Log s); shift; link=$1 |