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.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.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index ded6324649c..684832455fa 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -383,7 +383,7 @@ def parseOptionsAndInitTestdirs(): if sys.platform.startswith('win32'): os.environ['LLDB_DISABLE_CRASH_DIALOG'] = str(args.disable_crash_dialog) - os.environ['LLDB_LAUNCH_INFERIORS_WITHOUT_CONSOLE'] = str(args.hide_inferior_console) + os.environ['LLDB_LAUNCH_INFERIORS_WITHOUT_CONSOLE'] = str(True) if do_help == True: usage(parser) @@ -394,10 +394,6 @@ def parseOptionsAndInitTestdirs(): if args.inferior: configuration.is_inferior_test_runner = True - # Turn on output_on_sucess if either explicitly added or -v specified. - if args.output_on_success or args.v: - configuration.output_on_success = True - if args.num_threads: configuration.num_threads = args.num_threads @@ -975,8 +971,7 @@ def run_suite(): # multiprocess test runner here. if isMultiprocessTestRunner(): from . import dosep - dosep.main(configuration.output_on_success, configuration.num_threads, - configuration.multiprocess_test_subdir, + dosep.main(configuration.num_threads, configuration.multiprocess_test_subdir, configuration.test_runner_name, configuration.results_formatter_object) raise Exception("should never get here") elif configuration.is_inferior_test_runner: |