summaryrefslogtreecommitdiffstats
path: root/qa/workunits/fs/misc/xattrs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'qa/workunits/fs/misc/xattrs.sh')
-rwxr-xr-xqa/workunits/fs/misc/xattrs.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/qa/workunits/fs/misc/xattrs.sh b/qa/workunits/fs/misc/xattrs.sh
new file mode 100755
index 000000000..fcd94d22c
--- /dev/null
+++ b/qa/workunits/fs/misc/xattrs.sh
@@ -0,0 +1,14 @@
+#!/bin/sh -x
+
+set -e
+
+touch file
+
+setfattr -n user.foo -v foo file
+setfattr -n user.bar -v bar file
+setfattr -n user.empty file
+getfattr -d file | grep foo
+getfattr -d file | grep bar
+getfattr -d file | grep empty
+
+echo OK.