Skip to content

Commit cdcb853

Browse files
LukaszMrugalacarlescufi
authored andcommitted
scripts: pylib: twister: Fix --save-tests help
As saving tests writes to file, rather than appending to it, we should indicate that in the --save-tests help. --load-tests help changed so its grammar is the same as --save-tests's. Signed-off-by: Lukasz Mrugala <[email protected]>
1 parent 69787da commit cdcb853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/pylib/twister/twisterlib/environment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ def add_parse_arguments(parser = None):
8686
"--save-tests",
8787
metavar="FILENAME",
8888
action="store",
89-
help="Append list of tests and platforms to be run to file.")
89+
help="Write a list of tests and platforms to be run to file.")
9090

9191
case_select.add_argument(
9292
"-F",
9393
"--load-tests",
9494
metavar="FILENAME",
9595
action="store",
96-
help="Load list of tests and platforms to be run from file.")
96+
help="Load a list of tests and platforms to be run from file.")
9797

9898
case_select.add_argument(
9999
"-T", "--testsuite-root", action="append", default=[],

0 commit comments

Comments
 (0)