aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2022-11-06 01:01:46 -0400
committerTheodore Ts'o <tytso@mit.edu>2022-11-06 01:01:46 -0400
commitdc5a0ddc60a1b045474eaa90a82ca7a5e4cdfbb4 (patch)
treeb401107122eece69307369b3b0108e6b53784fb6
parenta040a918508ec62caf172e290f47d2a8d0752b75 (diff)
downloadxfstests-bld-dc5a0ddc60a1b045474eaa90a82ca7a5e4cdfbb4.tar.gz
gce-xfstests: fix -I and --image-family options
A typo ("USING_DEFAULT_FAMLY") caused -I and --image-default to get overridden by the default image family. Fixes: a917a8d1fc45 ("gce-xfstests: add support for arm64") Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--run-fstests/util/parse_cli4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-fstests/util/parse_cli b/run-fstests/util/parse_cli
index 0756ec38..a4a5bdd9 100644
--- a/run-fstests/util/parse_cli
+++ b/run-fstests/util/parse_cli
@@ -357,7 +357,7 @@ while (( $# >= 1 )); do
if flavor_in gce ; then
IMAGE_FLAG="--image"
fi
- unset USING_DEFAULT_FAMLY
+ unset USING_DEFAULT_FAMILY
;;
-n) shift
supported_flavors kvm gce
@@ -409,7 +409,7 @@ while (( $# >= 1 )); do
supported_flavors gce
ROOT_FS="$1"
IMAGE_FLAG="--image-family"
- unset USING_DEFAULT_FAMLY
+ unset USING_DEFAULT_FAMILY
;;
--fail-loop-count) shift
FAIL_LOOP_COUNT="$1"