aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/extattr
diff options
context:
space:
mode:
authorRuslan Bukin <br@FreeBSD.org>2016-09-21 10:58:58 +0000
committerRuslan Bukin <br@FreeBSD.org>2016-09-21 10:58:58 +0000
commitd68da43b7b64c9f4541562614f2f86ecea405ce7 (patch)
treefe235467442d8db738b22a60e718d55397cb6780 /usr.sbin/extattr
parentbd0892ffd4fbb8a322f3f2f2872d8097b9dc15c9 (diff)
Notes
Diffstat (limited to 'usr.sbin/extattr')
-rwxr-xr-xusr.sbin/extattr/tests/extattr_test.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/extattr/tests/extattr_test.sh b/usr.sbin/extattr/tests/extattr_test.sh
index 33d0a82f69b7..303abe190605 100755
--- a/usr.sbin/extattr/tests/extattr_test.sh
+++ b/usr.sbin/extattr/tests/extattr_test.sh
@@ -355,7 +355,11 @@ atf_init_test_cases() {
check_fs() {
case `df -T . | tail -n 1 | cut -wf 2` in
- "ufs") ;; # UFS is fine
+ "ufs")
+ case `dumpfs . | head -1 | awk -F'[()]' '{print $2}'` in
+ "UFS1") atf_skip "UFS1 is not supported by this test";;
+ "UFS2") ;; # UFS2 is fine
+ esac ;;
"zfs") ;; # ZFS is fine
"tmpfs") atf_skip "tmpfs does not support extended attributes";;
esac