Skip to content

Commit 199d4ab

Browse files
committed
9pm.py: tidy up help text
Explain what affects the harness (9pm) and what affects the test cases. Signed-off-by: Richard Alpe <[email protected]>
1 parent 70ea938 commit 199d4ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

9pm.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -602,13 +602,13 @@ def parse_rc(root_path):
602602
def parse_cmdline():
603603
parser = argparse.ArgumentParser()
604604
parser.add_argument('-a', '--abort', action='store_true',
605-
help='Abort suite if test failes')
605+
help='(9PM) Abort execution if test fails')
606606
parser.add_argument('-c', '--config', metavar='FILE', action='store',
607-
help='Use config file')
607+
help='(TEST) Config file passed to test case')
608608
parser.add_argument('-d', '--debug', action='store_true',
609-
help='Enable debug mode')
609+
help='(TEST) Enable test case debug')
610610
parser.add_argument('-o', '--option', action='append', default=[],
611-
help='Option to pass to tests and suites (use multiple -o for multiple options)')
611+
help='(TEST) Option(s) passed to all test cases (can be repeated)')
612612
parser.add_argument('suites', nargs='+', metavar='TEST|SUITE',
613613
help='Test or suite to run')
614614
if len(sys.argv) == 1:

0 commit comments

Comments
 (0)