diff options
author | Zachary Turner <zturner@google.com> | 2015-12-08 18:48:53 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-08 18:48:53 +0000 |
commit | 7544602d41cff82d30ed76eb8aaee132f98966ed (patch) | |
tree | da49d6d01d55f7404f51b23a73d7165fdcfca861 /lldb/packages/Python/lldbsuite/test/dotest_args.py | |
parent | 2155d5d301a1665127acc8c92d1c623a6cb1c0fd (diff) | |
download | bcm5719-llvm-7544602d41cff82d30ed76eb8aaee132f98966ed.tar.gz bcm5719-llvm-7544602d41cff82d30ed76eb8aaee132f98966ed.zip |
Remove the -g option from dotest.py
This removes the non-exclusive filterspec option as part of an
effort to remove unused / deprecated command line options from
dotest.
llvm-svn: 255041
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 6ecb968cef0..5cfff1915ca 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest_args.py +++ b/lldb/packages/Python/lldbsuite/test/dotest_args.py @@ -61,7 +61,6 @@ def create_parser(): 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('-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") group.add_argument('-p', metavar='pattern', help='Specify a regexp filename pattern for inclusion in the test suite') group.add_argument('-X', metavar='directory', help="Exclude a directory from consideration for test discovery. -X types => if 'types' appear in the pathname components of a potential testfile, it will be ignored") |