diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-11-09 18:51:04 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-11-09 18:51:04 +0000 |
commit | cee6a6a63b56c9317dd73edefa93ea35037fa2f6 (patch) | |
tree | 0a3487ae8219628534b0527e07ea9ac1c5e82ac5 /lldb/packages/Python/lldbsuite/test/dotest_args.py | |
parent | 18b2258c92df93c83bc7fce94c20baff3c06e2c6 (diff) | |
download | bcm5719-llvm-cee6a6a63b56c9317dd73edefa93ea35037fa2f6.tar.gz bcm5719-llvm-cee6a6a63b56c9317dd73edefa93ea35037fa2f6.zip |
Add --curses shortcut for specifying the curses-based test results formatter.
This commit closes the following review:
http://reviews.llvm.org/D14488
llvm-svn: 252498
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest_args.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest_args.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest_args.py b/lldb/packages/Python/lldbsuite/test/dotest_args.py index ecdda52a913..e34eea3e63c 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest_args.py +++ b/lldb/packages/Python/lldbsuite/test/dotest_args.py @@ -151,6 +151,10 @@ def create_parser(): # Test results support. group = parser.add_argument_group('Test results options') group.add_argument( + '--curses', + action='store_true', + help='Shortcut for specifying test results using the curses formatter') + group.add_argument( '--results-file', action='store', help=('Specifies the file where test results will be written ' |