diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-29 17:18:57 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-29 17:18:57 +0000 |
commit | 16624b8ca6ec0e3ae546e82941a026a40989a19e (patch) | |
tree | 94c5765e3d02ae2016f75e1d30f24986fa60a6f5 /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | 6347aa5d164381a1b74ecb81e88f35c9e4ebaaf4 (diff) | |
download | bcm5719-llvm-16624b8ca6ec0e3ae546e82941a026a40989a19e.tar.gz bcm5719-llvm-16624b8ca6ec0e3ae546e82941a026a40989a19e.zip |
[dotest] Remove the curses result formatter.
This removes the curses result formatter which appears to be broken.
Passing --curses to dotest.py screws up my terminal and doesn't run any
tests. It even crashes Python on occasion.
Differential revision: https://reviews.llvm.org/D66917
llvm-svn: 370386
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 8d301fb9404..08cf03e602c 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -416,12 +416,6 @@ def parseOptionsAndInitTestdirs(): if do_help: usage(parser) - # Capture test results-related args. - if args.curses: - # Act as if the following args were set. - args.results_formatter = "lldbsuite.test_event.formatter.curses.Curses" - args.results_file = "stdout" - if args.results_file: configuration.results_filename = args.results_file |