diff options
author | Zachary Turner <zturner@google.com> | 2015-12-08 18:43:16 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-08 18:43:16 +0000 |
commit | 2155d5d301a1665127acc8c92d1c623a6cb1c0fd (patch) | |
tree | c0c42e704d8af44686de1b6007a1f091a99bfdbc /lldb/packages/Python/lldbsuite/test/dotest_args.py | |
parent | 1763c0d3bcd5308ae41114eda7e05c1e7bb1d71c (diff) | |
download | bcm5719-llvm-2155d5d301a1665127acc8c92d1c623a6cb1c0fd.tar.gz bcm5719-llvm-2155d5d301a1665127acc8c92d1c623a6cb1c0fd.zip |
Remove the -b option from dotest.py
This removes the blacklist option as part of an effort to remove
unused / unmaintained command line options from the test suite.
llvm-svn: 255040
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest_args.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest_args.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest_args.py b/lldb/packages/Python/lldbsuite/test/dotest_args.py index b5345b3de6f..6ecb968cef0 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest_args.py +++ b/lldb/packages/Python/lldbsuite/test/dotest_args.py @@ -60,7 +60,6 @@ def create_parser(): # Test filtering options group = parser.add_argument_group('Test filtering options') group.add_argument('-N', choices=['dwarf', 'dwo', 'dsym'], help="Don't do test cases marked with the @dsym_test/@dwarf_test/@dwo_test decorator by passing dsym/dwarf/dwo as the option arg") - group.add_argument('-b', metavar='blacklist', help='Read a blacklist file specified after this option') group.add_argument('-f', metavar='filterspec', action='append', help='Specify a filter, which consists of the test class name, a dot, followed by the test method, to only admit such test into the test suite') # FIXME: Example? X('-g', 'If specified, the filterspec by -f is not exclusive, i.e., if a test module does not match the filterspec (testclass.testmethod), the whole module is still admitted to the test suite') X('-l', "Don't skip long running tests") |