blob: 4d9d4c3efcde9e9ed4380d646613b3d88a860cd0 [file] [log] [blame]
Vince Harronf8b9a1d2015-05-18 19:40:54 +00001import sys
2import os
3import textwrap
4
5if sys.version_info >= (2, 7):
6 argparse = __import__('argparse')
7else:
8 argparse = __import__('argparse_compat')
9
10class ArgParseNamespace(object):
11 pass
12
13def parse_args(parser, argv):
14 """ Returns an argument object. LLDB_TEST_ARGUMENTS environment variable can
15 be used to pass additional arguments if a compatible (>=2.7) argparse
16 library is available.
17 """
18 if sys.version_info >= (2, 7):
19 args = ArgParseNamespace()
20
21 if ('LLDB_TEST_ARGUMENTS' in os.environ):
22 print "Arguments passed through environment: '%s'" % os.environ['LLDB_TEST_ARGUMENTS']
23 args = parser.parse_args([sys.argv[0]].__add__(os.environ['LLDB_TEST_ARGUMENTS'].split()),namespace=args)
24
25 return parser.parse_args(args=argv, namespace=args)
26 else:
27 return parser.parse_args(args=argv)
28
Vince Harron8994fed2015-05-22 19:49:23 +000029def create_parser():
Vince Harronf8b9a1d2015-05-18 19:40:54 +000030 parser = argparse.ArgumentParser(description='description', prefix_chars='+-', add_help=False)
31 group = None
32
33 # Helper function for boolean options (group will point to the current group when executing X)
34 X = lambda optstr, helpstr, **kwargs: group.add_argument(optstr, help=helpstr, action='store_true', **kwargs)
35
36 group = parser.add_argument_group('Help')
37 group.add_argument('-h', '--help', dest='h', action='store_true', help="Print this help message and exit. Add '-v' for more detailed help.")
38
39 # C and Python toolchain options
40 group = parser.add_argument_group('Toolchain options')
41 group.add_argument('-A', '--arch', metavar='arch', action='append', dest='archs', help=textwrap.dedent('''Specify the architecture(s) to test. This option can be specified more than once'''))
42 group.add_argument('-C', '--compiler', metavar='compiler', dest='compilers', action='append', help=textwrap.dedent('''Specify the compiler(s) used to build the inferior executables. The compiler path can be an executable basename or a full path to a compiler executable. This option can be specified multiple times.'''))
43 if sys.platform == 'darwin':
44 group.add_argument('--apple-sdk', metavar='apple_sdk', dest='apple_sdk', help=textwrap.dedent('''Specify the name of the Apple SDK (macosx, macosx.internal, iphoneos, iphoneos.internal, or path to SDK) and use the appropriate tools from that SDK's toolchain.'''))
45 # FIXME? This won't work for different extra flags according to each arch.
46 group.add_argument('-E', metavar='extra-flags', help=textwrap.dedent('''Specify the extra flags to be passed to the toolchain when building the inferior programs to be debugged
47 suggestions: do not lump the "-A arch1 -A arch2" together such that the -E option applies to only one of the architectures'''))
48 X('-D', 'Dump the Python sys.path variable')
49
50 # Test filtering options
51 group = parser.add_argument_group('Test filtering options')
52 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")
53 X('-a', "Don't do lldb Python API tests")
54 X('+a', "Just do lldb Python API tests. Do not specify along with '-a'", dest='plus_a')
55 X('+b', 'Just do benchmark tests', dest='plus_b')
56 group.add_argument('-b', metavar='blacklist', help='Read a blacklist file specified after this option')
57 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?
58 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')
59 X('-l', "Don't skip long running tests")
60 X('-m', "Don't do lldb-mi tests")
61 X('+m', "Just do lldb-mi tests. Do not specify along with '-m'", dest='plus_m')
62 group.add_argument('-p', metavar='pattern', help='Specify a regexp filename pattern for inclusion in the test suite')
63 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")
64 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.'''))
65 group.add_argument('--skip-category', metavar='category', action='append', dest='skipCategories', help=textwrap.dedent('''Specify categories of test cases to skip. Takes precedence over -G. Can be specified more than once.'''))
66
67 # Configuration options
68 group = parser.add_argument_group('Configuration options')
69 group.add_argument('-c', metavar='config-file', help='Read a config file specified after this option') # FIXME: additional doc.
70 group.add_argument('--framework', metavar='framework-path', help='The path to LLDB.framework')
71 group.add_argument('--executable', metavar='executable-path', help='The path to the lldb executable')
72 group.add_argument('--libcxx', metavar='directory', help='The path to custom libc++ library')
73 group.add_argument('-e', metavar='benchmark-exe', help='Specify the full path of an executable used for benchmark purposes (see also: -x)')
74 group.add_argument('-k', metavar='command', action='append', help="Specify a runhook, which is an lldb command to be executed by the debugger; The option can occur multiple times. The commands are executed one after the other to bring the debugger to a desired state, so that, for example, further benchmarking can be done")
75 group.add_argument('-R', metavar='dir', help='Specify a directory to relocate the tests and their intermediate files to. BE WARNED THAT the directory, if exists, will be deleted before running this test driver. No cleanup of intermediate test files is performed in this case')
76 group.add_argument('-r', metavar='dir', help="Similar to '-R', except that the directory must not exist before running this test driver")
77 group.add_argument('-s', metavar='name', help='Specify the name of the dir created to store the session files of tests with errored or failed status. If not specified, the test driver uses the timestamp as the session dir name')
78 group.add_argument('-x', metavar='breakpoint-spec', help='Specify the breakpoint specification for the benchmark executable')
79 group.add_argument('-y', type=int, metavar='count', help="Specify the iteration count used to collect our benchmarks. An example is the number of times to do 'thread step-over' to measure stepping speed.")
80 group.add_argument('-#', type=int, metavar='sharp', dest='sharp', help='Repeat the test suite for a specified number of times')
81 group.add_argument('--channel', metavar='channel', dest='channels', action='append', help=textwrap.dedent("Specify the log channels (and optional categories) e.g. 'lldb all' or 'gdb-remote packets' if no categories are specified, 'default' is used"))
82 group.add_argument('--log-success', dest='log_success', action='store_true', help="Leave logs/traces even for successful test runs (useful for creating reference log files during debugging.)")
83
84 # Configuration options
85 group = parser.add_argument_group('Remote platform options')
86 group.add_argument('--platform-name', dest='lldb_platform_name', metavar='platform-name', help='The name of a remote platform to use')
87 group.add_argument('--platform-url', dest='lldb_platform_url', metavar='platform-url', help='A LLDB platform URL to use when connecting to a remote platform to run the test suite')
88 group.add_argument('--platform-working-dir', dest='lldb_platform_working_dir', metavar='platform-working-dir', help='The directory to use on the remote platform.')
89
90 # Test-suite behaviour
91 group = parser.add_argument_group('Runtime behaviour options')
92 X('-d', 'Suspend the process after launch to wait indefinitely for a debugger to attach')
93 X('-F', 'Fail fast. Stop the test suite on the first error/failure')
94 X('-i', "Ignore (don't bailout) if 'lldb.py' module cannot be located in the build tree relative to this script; use PYTHONPATH to locate the module")
95 X('-n', "Don't print the headers like build dir, lldb version, and svn info at all")
96 X('-P', "Use the graphic progress bar.")
97 X('-q', "Don't print extra output from this script.")
98 X('-S', "Skip the build and cleanup while running the test. Use this option with care as you would need to build the inferior(s) by hand and build the executable(s) with the correct name(s). This can be used with '-# n' to stress test certain test cases for n number of times")
99 X('-t', 'Turn on tracing of lldb command and other detailed test executions')
100 group.add_argument('-u', dest='unset_env_varnames', metavar='variable', action='append', help='Specify an environment variable to unset before running the test cases. e.g., -u DYLD_INSERT_LIBRARIES -u MallocScribble')
101 group.add_argument('--env', dest='set_env_vars', metavar='variable', action='append', help='Specify an environment variable to set to the given value before running the test cases e.g.: --env CXXFLAGS=-O3 --env DYLD_INSERT_LIBRARIES')
102 X('-v', 'Do verbose mode of unittest framework (print out each test case invocation)')
103 X('-w', 'Insert some wait time (currently 0.5 sec) between consecutive test cases')
104 X('-T', 'Obtain and dump svn information for this checkout of LLDB (off by default)')
105 group.add_argument('--enable-crash-dialog', dest='disable_crash_dialog', action='store_false', help='(Windows only) When LLDB crashes, display the Windows crash dialog.')
106 group.add_argument('--show-inferior-console', dest='hide_inferior_console', action='store_false', help='(Windows only) When launching an inferior, dont hide its console window.')
107 group.set_defaults(disable_crash_dialog=True)
108 group.set_defaults(hide_inferior_console=True)
109
Todd Fialafed95662015-09-03 18:58:44 +0000110 group = parser.add_argument_group('Parallel execution options')
111 group.add_argument(
112 '--inferior',
113 action='store_true',
114 help=('specify this invocation is a multiprocess inferior, '
115 'used internally'))
116 group.add_argument(
117 '--no-multiprocess',
118 action='store_true',
119 help='skip running the multiprocess test runner')
120 group.add_argument(
121 '--output-on-success',
122 action='store_true',
123 help=('print full output of the dotest.py inferior, '
124 'even when all tests succeed'))
125 group.add_argument(
126 '--threads',
127 type=int,
128 dest='num_threads',
129 help=('The number of threads/processes to use when running tests '
130 'separately, defaults to the number of CPU cores available'))
Todd Fiala8cbeed32015-09-08 22:22:33 +0000131 group.add_argument(
Todd Fialafed95662015-09-03 18:58:44 +0000132 '--test-subdir',
133 action='store',
134 help='Specify a test subdirectory to use relative to the test root dir'
135 )
Todd Fiala8cbeed32015-09-08 22:22:33 +0000136 group.add_argument(
137 '--test-runner-name',
138 action='store',
139 help=('Specify a test runner strategy. Valid values: multiprocessing,'
140 ' multiprocessing-pool, serial, threading, threading-pool')
141 )
Todd Fialafed95662015-09-03 18:58:44 +0000142
Todd Fiala68615ce2015-09-15 21:38:04 +0000143 # Test results support.
144 group = parser.add_argument_group('Test results options')
145 group.add_argument(
146 '--results-file',
147 action='store',
148 help=('Specifies the file where test results will be written '
149 'according to the results-formatter class used'))
150 group.add_argument(
151 '--results-port',
152 action='store',
153 type=int,
154 help=('Specifies the localhost port to which the results '
155 'formatted output should be sent'))
156 group.add_argument(
157 '--results-formatter',
158 action='store',
159 help=('Specifies the full package/module/class name used to translate '
160 'test events into some kind of meaningful report, written to '
161 'the designated output results file-like object'))
162 group.add_argument(
163 '--results-formatter-options',
164 action='store',
165 help=('Specify comma-separated options to pass to the formatter. '
166 'Use --results-formatter-options="--option1[,--option2[,...]]" '
167 'syntax. Note the "=" is critical, and don\'t use whitespace.'))
Todd Fiala33896a92015-09-18 21:01:13 +0000168 group.add_argument(
169 '--event-add-entries',
170 action='store',
171 help=('Specify comma-separated KEY=VAL entries to add key and value '
172 'pairs to all test events generated by this test run.'))
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000173 # Remove the reference to our helper function
174 del X
175
176 group = parser.add_argument_group('Test directories')
177 group.add_argument('args', metavar='test-dir', nargs='*', help='Specify a list of directory names to search for test modules named after Test*.py (test discovery). If empty, search from the current working directory instead.')
178
Vince Harron8994fed2015-05-22 19:49:23 +0000179 return parser