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.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.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 69bc6f1d8a2..709846d6f07 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -300,17 +300,6 @@ def parseOptionsAndInitTestdirs(): "functionality (-G lldb-mi, --skip-category lldb-mi) instead.") sys.exit(1) - if args.b: - if args.b.startswith('-'): - usage(parser) - blacklistFile = args.b - if not os.path.isfile(blacklistFile): - print('Blacklist file:', blacklistFile, 'does not exist!') - usage(parser) - # Now read the blacklist contents and assign it to blacklist. - execfile(blacklistFile, globals(), configuration.blacklistConfig) - configuration.blacklist = configuration.blacklistConfig.get('blacklist') - if args.c: if args.c.startswith('-'): usage(parser) |