diff options
Diffstat (limited to 'lldb/test/dotest_args.py')
| -rw-r--r-- | lldb/test/dotest_args.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lldb/test/dotest_args.py b/lldb/test/dotest_args.py index 481cd6436a3..ba79600f1ec 100644 --- a/lldb/test/dotest_args.py +++ b/lldb/test/dotest_args.py @@ -172,11 +172,13 @@ def create_parser(): 'test events into some kind of meaningful report, written to ' 'the designated output results file-like object')) group.add_argument( - '--results-formatter-options', - action='store', - help=('Specify comma-separated options to pass to the formatter. ' - 'Use --results-formatter-options="--option1[,--option2[,...]]" ' - 'syntax. Note the "=" is critical, and don\'t use whitespace.')) + '--results-formatter-option', + '-O', + action='append', + dest='results_formatter_options', + help=('Specify an option to pass to the formatter. ' + 'Use --results-formatter-option="--option1=val1" ' + 'syntax. Note the "=" is critical, don\'t include whitespace.')) group.add_argument( '--event-add-entries', action='store', |

