xfs/188: add and use _require_xfs_mkfs_ciname

Use an explicit mkfs -n version=ci test to check whether the test
should run, instead of checking the xfsprogs version.

Suggested-by: Eryu Guan <eguan@redhat.com>
Signed-off-by: David Disseldorp <ddiss@suse.de>
Reviewed-by: Eryu Guan <eguan@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
David Disseldorp
2017-01-12 18:18:47 +01:00
committed by Eryu Guan
parent f722c48d4c
commit 31da5626e9
2 changed files with 8 additions and 5 deletions
+7
View File
@@ -587,3 +587,10 @@ _require_meta_uuid()
|| _notrun "Kernel doesn't support meta_uuid feature"
_scratch_unmount
}
# this test requires mkfs.xfs have case-insensitive naming support
_require_xfs_mkfs_ciname()
{
_scratch_mkfs_xfs_supported -n version=ci >/dev/null 2>&1 \
|| _notrun "need case-insensitive naming support in mkfs.xfs"
}