test-xattrs: Skip if current FS doesn't support user_xattr

tmpfs doesn't =(
This commit is contained in:
Colin Walters 2013-08-14 20:46:46 +02:00
parent 61773f6ca4
commit f68ac018c2

View File

@ -19,6 +19,11 @@
set -e
touch test-xattrs
if ! setfattr -n user.testvalue -v somevalue test-xattrs; then
exit 77
fi
echo "1..2"
. $(dirname $0)/libtest.sh