From ca99f1e8406c14e5899d393ab0bb503061c47b9b Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Wed, 16 Aug 2017 11:47:19 +0200 Subject: [PATCH] qa/run_xfstests.sh: kill FS_TYPE variable ./check expects FSTYP, so use that throughout. Signed-off-by: Ilya Dryomov --- qa/run_xfstests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa/run_xfstests.sh b/qa/run_xfstests.sh index a889fe5d05dd2..057ba694e53a9 100644 --- a/qa/run_xfstests.sh +++ b/qa/run_xfstests.sh @@ -44,7 +44,7 @@ XFSDUMP_VERSION="v3.1.4" COUNT="1" EXPUNGE_FILE="" DO_RANDOMIZE="" # false -FS_TYPE="xfs" +FSTYP="xfs" SCRATCH_DEV="" # MUST BE SPECIFIED TEST_DEV="" # MUST BE SPECIFIED TESTS="-g auto" # The "auto" group is supposed to be "known good" @@ -197,7 +197,7 @@ function parseargs() { -f|--fs-type) fs_type_valid "$2" || usage "invalid fs_type '$2'" - FS_TYPE="$2" + FSTYP="$2" shift ;; -r|--randomize) @@ -315,7 +315,7 @@ function setup_host_options() { SCRATCH_DEV="${SCRATCH_DEV}" TEST_DIR="${test_dir}" SCRATCH_MNT="${scratch_dir}" - FSTYP="${FS_TYPE}" + FSTYP="${FSTYP}" export TEST_DEV SCRATCH_DEV TEST_DIR SCRATCH_MNT FSTYP # export XFS_MKFS_OPTIONS="${XFS_MKFS_OPTIONS}" -- 2.39.5