aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeah Rumancik <leah.rumancik@gmail.com>2022-09-27 17:37:45 -0700
committerLeah Rumancik <leah.rumancik@gmail.com>2022-09-29 14:43:50 -0700
commitc02545207ae782b2e49d5167c57367a3631ae881 (patch)
treec7157acdb164737e18038eff6679349459e5b0eb
parenta917a8d1fc45a171902aa9de2fa211f3a65292b4 (diff)
downloadxfstests-bld-c02545207ae782b2e49d5167c57367a3631ae881.tar.gz
gce-xfstests: update help message
Add --arch to gce-xfstests help options. Also, move two options that were previously in the commands section to the options section. Signed-off-by: Leah Rumancik <leah.rumancik@gmail.com>
-rw-r--r--run-fstests/util/parse_cli12
1 files changed, 8 insertions, 4 deletions
diff --git a/run-fstests/util/parse_cli b/run-fstests/util/parse_cli
index 89108433..0756ec38 100644
--- a/run-fstests/util/parse_cli
+++ b/run-fstests/util/parse_cli
@@ -61,6 +61,9 @@ print_help ()
echo " -x group - Exclude group of tests from running"
echo " -X test - Exclude test from running"
echo " --kernel file - Boot the specified kernel"
+ if flavor_in gce ; then
+ echo " --arch arch - Specify the architecture to run on"
+ fi
if flavor_in kvm ; then
echo " --initrd initrd - Boot with the specified initrd"
elif flavor_in gce ; then
@@ -76,6 +79,11 @@ print_help ()
echo " --email email - Specify the email address to send a report to"
echo " --no-email - Do not send an email"
fi
+ if flavor_in gce ; then
+ echo " --no-region-shard"
+ echo " - Don't shard test VMs into other GCE zones"
+ echo " --bucket-subdir - Use the next argument as a bucket subdir"
+ fi
echo ""
echo "Common file system configurations are:"
echo " 4k 1k ext3 nojournal ext3conv metacsum dioread_nolock "
@@ -99,10 +107,6 @@ print_help ()
echo " See documentation for details."
echo " ltm - Send the command to the LTM."
echo " Note: NR_CPU and MEM must be their default values."
- echo " The dax config is not supported by the LTM"
- echo " --no-region-shard"
- echo " - Don't shard test VMs into other GCE zones"
- echo " --bucket-subdir - Use the next argument as a bucket subdir"
fi
exit 1
}