diff options
author | Zachary Turner <zturner@google.com> | 2015-12-10 18:51:02 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-10 18:51:02 +0000 |
commit | 80310c29fb6cd5e835ea273b25e69a9d8836cea8 (patch) | |
tree | 8d5c6e837a42a167f3d665c14875271f0c5b5aee /lldb/packages/Python/lldbsuite/test/dotest_args.py | |
parent | 3cfa31492cd9add70042d3e73c5fac8d9eb5b378 (diff) | |
download | bcm5719-llvm-80310c29fb6cd5e835ea273b25e69a9d8836cea8.tar.gz bcm5719-llvm-80310c29fb6cd5e835ea273b25e69a9d8836cea8.zip |
Remove the --output-on-success command line argument from dotest.
llvm-svn: 255277
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest_args.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest_args.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest_args.py b/lldb/packages/Python/lldbsuite/test/dotest_args.py index 7262dcc26e1..7fc012f5054 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest_args.py +++ b/lldb/packages/Python/lldbsuite/test/dotest_args.py @@ -95,9 +95,7 @@ def create_parser(): group.add_argument('--env', dest='set_env_vars', metavar='variable', action='append', help='Specify an environment variable to set to the given value before running the test cases e.g.: --env CXXFLAGS=-O3 --env DYLD_INSERT_LIBRARIES') X('-v', 'Do verbose mode of unittest framework (print out each test case invocation)') group.add_argument('--enable-crash-dialog', dest='disable_crash_dialog', action='store_false', help='(Windows only) When LLDB crashes, display the Windows crash dialog.') - group.add_argument('--show-inferior-console', dest='hide_inferior_console', action='store_false', help='(Windows only) When launching an inferior, dont hide its console window.') group.set_defaults(disable_crash_dialog=True) - group.set_defaults(hide_inferior_console=True) group = parser.add_argument_group('Parallel execution options') group.add_argument( @@ -110,11 +108,6 @@ def create_parser(): action='store_true', help='skip running the multiprocess test runner') group.add_argument( - '--output-on-success', - action='store_true', - help=('print full output of the dotest.py inferior, ' - 'even when all tests succeed')) - group.add_argument( '--threads', type=int, dest='num_threads', |