test-xattrs: Skip if current FS doesn't support user_xattr
tmpfs doesn't =(
This commit is contained in:
parent
61773f6ca4
commit
f68ac018c2
|
|
@ -19,6 +19,11 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
touch test-xattrs
|
||||||
|
if ! setfattr -n user.testvalue -v somevalue test-xattrs; then
|
||||||
|
exit 77
|
||||||
|
fi
|
||||||
|
|
||||||
echo "1..2"
|
echo "1..2"
|
||||||
|
|
||||||
. $(dirname $0)/libtest.sh
|
. $(dirname $0)/libtest.sh
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue