diff options
Diffstat (limited to 'tests/xattr-0')
-rwxr-xr-x | tests/xattr-0 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/xattr-0 b/tests/xattr-0 new file mode 100755 index 0000000..5504443 --- /dev/null +++ b/tests/xattr-0 @@ -0,0 +1,7 @@ +#!/bin/sh +# Make sure the filesystem supports xattrs. +file=".test.xattrs" +touch "${file}" +setxattr-0 0 "${file}" user.sandbox test 4 0 && ret=0 || ret=77 +rm -f "${file}" +exit "${ret}" |