diff options
| author | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2014-12-16 10:20:35 +0000 |
|---|---|---|
| committer | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2014-12-16 10:20:35 +0000 |
| commit | 547cb787745468e5574f07f5e6166dd6307b99b0 (patch) | |
| tree | 616c632951a587a142eaaf2e019eaeed2493b9bd | |
| parent | a79fc16bb05a37eb9b42fb3ab349b37b9c58e034 (diff) | |
| download | bcm5719-llvm-547cb787745468e5574f07f5e6166dd6307b99b0.tar.gz bcm5719-llvm-547cb787745468e5574f07f5e6166dd6307b99b0.zip | |
Fixed 2 typos in help.
llvm-svn: 224331
| -rwxr-xr-x | lldb/test/dotest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index 8b029e5f861..c5899dc650d 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -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.''')) |

