* [PATCH] xfs: notrun if kernel xfs not supports ascii-ci feature
@ 2024-10-26 20:12 Zorro Lang
2024-10-28 8:45 ` Christoph Hellwig
0 siblings, 1 reply; 3+ messages in thread
From: Zorro Lang @ 2024-10-26 20:12 UTC (permalink / raw)
To: fstests; +Cc: linux-xfs
As the ascii-ci feature is deprecated, if linux build without the
CONFIG_XFS_SUPPORT_ASCII_CI, mount xfs with "-n version=ci" will
get EINVAL. So let's notrun if it's not supported by kernel.
Signed-off-by: Zorro Lang <zlang@kernel.org>
---
common/xfs | 10 ++++++++++
tests/xfs/188 | 1 +
tests/xfs/597 | 1 +
tests/xfs/598 | 1 +
4 files changed, 13 insertions(+)
diff --git a/common/xfs b/common/xfs
index 62e3100ee..cbcf4ee0b 100644
--- a/common/xfs
+++ b/common/xfs
@@ -1181,6 +1181,16 @@ _require_xfs_mkfs_ciname()
|| _notrun "need case-insensitive naming support in mkfs.xfs"
}
+# this test requires the xfs kernel support ascii-ci feature
+#
+_require_xfs_ciname()
+{
+ _try_scratch_mkfs_xfs -n version=ci >/dev/null 2>&1
+ _try_scratch_mount >/dev/null 2>&1 \
+ || _notrun "XFS doesn't support ascii-ci feature"
+ _scratch_unmount
+}
+
# this test requires mkfs.xfs have configuration file support
_require_xfs_mkfs_cfgfile()
{
diff --git a/tests/xfs/188 b/tests/xfs/188
index a72bf15d6..98cdfd501 100755
--- a/tests/xfs/188
+++ b/tests/xfs/188
@@ -31,6 +31,7 @@ _cleanup()
_require_scratch
_require_xfs_mkfs_ciname
+_require_xfs_ciname
_scratch_mkfs -n version=ci >/dev/null 2>&1
_scratch_mount
diff --git a/tests/xfs/597 b/tests/xfs/597
index d3bf91a99..2bf361080 100755
--- a/tests/xfs/597
+++ b/tests/xfs/597
@@ -20,6 +20,7 @@ _fixed_by_kernel_commit 9dceccc5822f \
_require_scratch
_require_xfs_mkfs_ciname
+_require_xfs_ciname
_scratch_mkfs -n version=ci > $seqres.full
_scratch_mount
diff --git a/tests/xfs/598 b/tests/xfs/598
index 54f50cd60..20a80fcb6 100755
--- a/tests/xfs/598
+++ b/tests/xfs/598
@@ -27,6 +27,7 @@ _fixed_by_kernel_commit 9dceccc5822f \
_require_test
_require_scratch
_require_xfs_mkfs_ciname
+_require_xfs_ciname
_scratch_mkfs -n version=ci > $seqres.full
_scratch_mount
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-28 12:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-26 20:12 [PATCH] xfs: notrun if kernel xfs not supports ascii-ci feature Zorro Lang
2024-10-28 8:45 ` Christoph Hellwig
2024-10-28 12:50 ` Zorro Lang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox