aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@suse.de>2024-04-11 16:32:33 +1000
committerZorro Lang <zlang@kernel.org>2024-04-28 19:08:22 +0800
commitb26d68da08e47e6508a96bee72b25823040ab67e (patch)
tree096e302e8769b2d00d6f98e4f7f8858996256806
parent4706a3a1eebde964e910b351f8077cb52b8a5b0c (diff)
downloadxfstests-dev-master.tar.gz
common/config: export TEST_DEV for mkfs.xfsHEADv2024.04.28master
As of xfsprogs commit 6e0ed3d1 ("mkfs: stop allowing tiny filesystems") attempts to create XFS filesystems sized under 300M fail, unless TEST_DIR, TEST_DEV and QA_CHECK_FS environment variables are exported (or a --unsupported mkfs parameter is provided). TEST_DIR and QA_CHECK_FS are already exported, while TEST_DEV may only be locally set if provided via e.g. configs/$HOSTNAME.config. Explicitly export TEST_DEV to ensure that tests which call _scratch_mkfs_sized() with an fssize under 300M run normally. Signed-off-by: David Disseldorp <ddiss@suse.de> Reviewed-by: "Darrick J. Wong" <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Zorro Lang <zlang@kernel.org>
-rw-r--r--common/config3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/config b/common/config
index eac0710e87..2114d93607 100644
--- a/common/config
+++ b/common/config
@@ -920,6 +920,9 @@ else
fi
_canonicalize_devices
+# mkfs.xfs checks for TEST_DEV before permitting < 300M filesystems. TEST_DIR
+# and QA_CHECK_FS are also checked by mkfs.xfs, but already exported elsewhere.
+export TEST_DEV
# make sure this script returns success
/bin/true