[Lldb-commits] [lldb] r224331 - Fixed 2 typos in help.
Hafiz Abid Qadeer
hafiz_abid at mentor.com
Tue Dec 16 02:20:35 PST 2014
Author: abidh
Date: Tue Dec 16 04:20:35 2014
New Revision: 224331
URL: http://llvm.org/viewvc/llvm-project?rev=224331&view=rev
Log:
Fixed 2 typos in help.
Modified:
lldb/trunk/test/dotest.py
Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=224331&r1=224330&r2=224331&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Tue Dec 16 04:20:35 2014
@@ -506,14 +506,14 @@ def parseOptionsAndInitTestdirs():
group = parser.add_argument_group('Test filtering options')
group.add_argument('-N', choices=['dwarf', 'dsym'], help="Don't do test cases marked with the @dsym decorator by passing 'dsym' as the option arg, or don't do test cases marked with the @dwarf decorator by passing 'dwarf' as the option arg")
X('-a', "Don't do lldb Python API tests")
- X('+a', "Just do lldb Python API tests. Do not specify along with '+a'", dest='plus_a')
+ X('+a', "Just do lldb Python API tests. Do not specify along with '-a'", dest='plus_a')
X('+b', 'Just do benchmark tests', dest='plus_b')
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")
X('-m', "Don't do lldb-mi tests")
- X('+m', "Just do lldb-mi tests. Do not specify along with '+m'", dest='plus_m')
+ X('+m', "Just do lldb-mi tests. Do not specify along with '-m'", dest='plus_m')
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")
group.add_argument('-G', '--category', metavar='category', action='append', dest='categoriesList', help=textwrap.dedent('''Specify categories of test cases of interest. Can be specified more than once.'''))
More information about the lldb-commits
mailing list