From 438d9c71b3f0dddbf54d212d9f5da25c62b6bddd Mon Sep 17 00:00:00 2001 From: Ivan Yung Date: Wed, 17 Apr 2019 14:17:35 +0000 Subject: [PATCH] Bug 1519884: Improve help text for --test argument r=rwood Differential Revision: https://phabricator.services.mozilla.com/D27608 --HG-- extra : moz-landing-system : lando --- testing/raptor/raptor/cmdline.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/raptor/raptor/cmdline.py b/testing/raptor/raptor/cmdline.py index 0a0ed4152eac..17c882337f3a 100644 --- a/testing/raptor/raptor/cmdline.py +++ b/testing/raptor/raptor/cmdline.py @@ -52,7 +52,9 @@ def create_parser(mach_interface=False): add_arg = parser.add_argument add_arg('-t', '--test', required=True, dest='test', - help="name of raptor test to run") + help="name of raptor test to run (can be a top-level suite name i.e." + "'--test raptor-speedometer','--test raptor-tp6-1', or for page-load " + "tests a suite sub-test i.e. '--test raptor-tp6-google-firefox')") add_arg('--app', default='firefox', dest='app', help="name of the application we are testing (default: firefox)", choices=APPS.keys())