From c02545207ae782b2e49d5167c57367a3631ae881 Mon Sep 17 00:00:00 2001 From: Leah Rumancik Date: Tue, 27 Sep 2022 17:37:45 -0700 Subject: 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 --- run-fstests/util/parse_cli | 12 ++++++++---- 1 file 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 } -- cgit 1.2.3-korg