blob: bc43a6fc04a9fc0591ce77e3cc425690590e9758 [file] [log] [blame]
Zachary Turnerff890da2015-10-19 23:45:41 +00001from __future__ import print_function
Zachary Turnerc1b7cd72015-11-05 19:22:28 +00002from __future__ import absolute_import
Zachary Turnerff890da2015-10-19 23:45:41 +00003
Zachary Turnerc1b7cd72015-11-05 19:22:28 +00004# System modules
Zachary Turner3ad38742015-10-23 17:53:30 +00005import argparse
Vince Harronf8b9a1d2015-05-18 19:40:54 +00006import sys
Todd Fialae83f1402015-09-18 22:45:31 +00007import multiprocessing
Vince Harronf8b9a1d2015-05-18 19:40:54 +00008import os
9import textwrap
10
Zachary Turnerc1b7cd72015-11-05 19:22:28 +000011# Third-party modules
12
13# LLDB modules
Zachary Turner8d4d1512016-05-17 18:02:34 +000014from . import configuration
Zachary Turnerc1b7cd72015-11-05 19:22:28 +000015
Kate Stoneb9c1b512016-09-06 20:57:50 +000016
Vince Harronf8b9a1d2015-05-18 19:40:54 +000017class ArgParseNamespace(object):
18 pass
19
Kate Stoneb9c1b512016-09-06 20:57:50 +000020
Vince Harronf8b9a1d2015-05-18 19:40:54 +000021def parse_args(parser, argv):
22 """ Returns an argument object. LLDB_TEST_ARGUMENTS environment variable can
Zachary Turner3ad38742015-10-23 17:53:30 +000023 be used to pass additional arguments.
Vince Harronf8b9a1d2015-05-18 19:40:54 +000024 """
Zachary Turner3ad38742015-10-23 17:53:30 +000025 args = ArgParseNamespace()
Vince Harronf8b9a1d2015-05-18 19:40:54 +000026
Zachary Turner3ad38742015-10-23 17:53:30 +000027 if ('LLDB_TEST_ARGUMENTS' in os.environ):
Kate Stoneb9c1b512016-09-06 20:57:50 +000028 print(
29 "Arguments passed through environment: '%s'" %
30 os.environ['LLDB_TEST_ARGUMENTS'])
31 args = parser.parse_args([sys.argv[0]].__add__(
32 os.environ['LLDB_TEST_ARGUMENTS'].split()), namespace=args)
Vince Harronf8b9a1d2015-05-18 19:40:54 +000033
Zachary Turner3ad38742015-10-23 17:53:30 +000034 return parser.parse_args(args=argv, namespace=args)
Vince Harronf8b9a1d2015-05-18 19:40:54 +000035
Todd Fialae83f1402015-09-18 22:45:31 +000036
37def default_thread_count():
38 # Check if specified in the environment
39 num_threads_str = os.environ.get("LLDB_TEST_THREADS")
40 if num_threads_str:
41 return int(num_threads_str)
42 else:
43 return multiprocessing.cpu_count()
44
45
Vince Harron8994fed2015-05-22 19:49:23 +000046def create_parser():
Kate Stoneb9c1b512016-09-06 20:57:50 +000047 parser = argparse.ArgumentParser(
48 description='description',
49 prefix_chars='+-',
50 add_help=False)
Vince Harronf8b9a1d2015-05-18 19:40:54 +000051 group = None
52
Kate Stoneb9c1b512016-09-06 20:57:50 +000053 # Helper function for boolean options (group will point to the current
54 # group when executing X)
55 X = lambda optstr, helpstr, **kwargs: group.add_argument(
56 optstr, help=helpstr, action='store_true', **kwargs)
Vince Harronf8b9a1d2015-05-18 19:40:54 +000057
58 group = parser.add_argument_group('Help')
Kate Stoneb9c1b512016-09-06 20:57:50 +000059 group.add_argument(
60 '-h',
61 '--help',
62 dest='h',
63 action='store_true',
64 help="Print this help message and exit. Add '-v' for more detailed help.")
Vince Harronf8b9a1d2015-05-18 19:40:54 +000065
66 # C and Python toolchain options
67 group = parser.add_argument_group('Toolchain options')
Kate Stoneb9c1b512016-09-06 20:57:50 +000068 group.add_argument(
69 '-A',
70 '--arch',
71 metavar='arch',
Pavel Labath6de25ec2017-03-15 08:51:59 +000072 dest='arch',
Kate Stoneb9c1b512016-09-06 20:57:50 +000073 help=textwrap.dedent('''Specify the architecture(s) to test. This option can be specified more than once'''))
Pavel Labath6de25ec2017-03-15 08:51:59 +000074 group.add_argument('-C', '--compiler', metavar='compiler', dest='compiler', help=textwrap.dedent(
Kate Stoneb9c1b512016-09-06 20:57:50 +000075 '''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.'''))
Vince Harronf8b9a1d2015-05-18 19:40:54 +000076 if sys.platform == 'darwin':
Chris Bieneman4c63acc2016-10-12 20:19:19 +000077 group.add_argument('--apple-sdk', metavar='apple_sdk', dest='apple_sdk', default="macosx", help=textwrap.dedent(
Kate Stoneb9c1b512016-09-06 20:57:50 +000078 '''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.'''))
Vince Harronf8b9a1d2015-05-18 19:40:54 +000079 # FIXME? This won't work for different extra flags according to each arch.
Kate Stoneb9c1b512016-09-06 20:57:50 +000080 group.add_argument(
81 '-E',
82 metavar='extra-flags',
83 help=textwrap.dedent('''Specify the extra flags to be passed to the toolchain when building the inferior programs to be debugged
Vince Harronf8b9a1d2015-05-18 19:40:54 +000084 suggestions: do not lump the "-A arch1 -A arch2" together such that the -E option applies to only one of the architectures'''))
Vince Harronf8b9a1d2015-05-18 19:40:54 +000085
86 # Test filtering options
87 group = parser.add_argument_group('Test filtering options')
Kate Stoneb9c1b512016-09-06 20:57:50 +000088 group.add_argument(
89 '-f',
90 metavar='filterspec',
91 action='append',
92 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?
Vince Harronf8b9a1d2015-05-18 19:40:54 +000093 X('-l', "Don't skip long running tests")
Kate Stoneb9c1b512016-09-06 20:57:50 +000094 group.add_argument(
95 '-p',
96 metavar='pattern',
97 help='Specify a regexp filename pattern for inclusion in the test suite')
Francis Riccif833f172016-10-04 18:48:00 +000098 group.add_argument('--excluded', metavar='exclusion-file', action='append', help=textwrap.dedent(
Francis Ricci69517072016-09-23 21:32:47 +000099 '''Specify a file for tests to exclude. File should contain lists of regular expressions for test files or methods,
100 with each list under a matching header (xfail files, xfail methods, skip files, skip methods)'''))
Kate Stoneb9c1b512016-09-06 20:57:50 +0000101 group.add_argument(
102 '-G',
103 '--category',
104 metavar='category',
105 action='append',
106 dest='categoriesList',
107 help=textwrap.dedent('''Specify categories of test cases of interest. Can be specified more than once.'''))
108 group.add_argument(
109 '--skip-category',
110 metavar='category',
111 action='append',
112 dest='skipCategories',
113 help=textwrap.dedent('''Specify categories of test cases to skip. Takes precedence over -G. Can be specified more than once.'''))
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000114
115 # Configuration options
116 group = parser.add_argument_group('Configuration options')
Kate Stoneb9c1b512016-09-06 20:57:50 +0000117 group.add_argument(
118 '--framework',
119 metavar='framework-path',
120 help='The path to LLDB.framework')
121 group.add_argument(
122 '--executable',
123 metavar='executable-path',
124 help='The path to the lldb executable')
125 group.add_argument(
Chris Bieneman265ca532017-03-14 20:04:46 +0000126 '--server',
127 metavar='server-path',
128 help='The path to the debug server executable to use')
129 group.add_argument(
Kate Stoneb9c1b512016-09-06 20:57:50 +0000130 '-s',
131 metavar='name',
132 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')
133 group.add_argument(
134 '-S',
135 '--session-file-format',
136 default=configuration.session_file_format,
137 metavar='format',
138 help='Specify session file name format. See configuration.py for a description.')
139 group.add_argument(
140 '-y',
141 type=int,
142 metavar='count',
143 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.")
144 group.add_argument(
145 '-#',
146 type=int,
147 metavar='sharp',
148 dest='sharp',
149 help='Repeat the test suite for a specified number of times')
150 group.add_argument('--channel', metavar='channel', dest='channels', action='append', help=textwrap.dedent(
151 "Specify the log channels (and optional categories) e.g. 'lldb all' or 'gdb-remote packets' if no categories are specified, 'default' is used"))
152 group.add_argument(
153 '--log-success',
154 dest='log_success',
155 action='store_true',
156 help="Leave logs/traces even for successful test runs (useful for creating reference log files during debugging.)")
Chris Bieneman7ba55812016-10-21 22:13:55 +0000157 group.add_argument(
158 '--codesign-identity',
159 metavar='Codesigning identity',
160 default='lldb_codesign',
161 help='The codesigning identity to use')
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000162
163 # Configuration options
164 group = parser.add_argument_group('Remote platform options')
Kate Stoneb9c1b512016-09-06 20:57:50 +0000165 group.add_argument(
166 '--platform-name',
167 dest='lldb_platform_name',
168 metavar='platform-name',
169 help='The name of a remote platform to use')
170 group.add_argument(
171 '--platform-url',
172 dest='lldb_platform_url',
173 metavar='platform-url',
174 help='A LLDB platform URL to use when connecting to a remote platform to run the test suite')
175 group.add_argument(
176 '--platform-working-dir',
177 dest='lldb_platform_working_dir',
178 metavar='platform-working-dir',
179 help='The directory to use on the remote platform.')
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000180
181 # Test-suite behaviour
182 group = parser.add_argument_group('Runtime behaviour options')
183 X('-d', 'Suspend the process after launch to wait indefinitely for a debugger to attach')
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000184 X('-q', "Don't print extra output from this script.")
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000185 X('-t', 'Turn on tracing of lldb command and other detailed test executions')
Kate Stoneb9c1b512016-09-06 20:57:50 +0000186 group.add_argument(
187 '-u',
188 dest='unset_env_varnames',
189 metavar='variable',
190 action='append',
191 help='Specify an environment variable to unset before running the test cases. e.g., -u DYLD_INSERT_LIBRARIES -u MallocScribble')
192 group.add_argument(
193 '--env',
194 dest='set_env_vars',
195 metavar='variable',
196 action='append',
197 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')
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000198 X('-v', 'Do verbose mode of unittest framework (print out each test case invocation)')
Kate Stoneb9c1b512016-09-06 20:57:50 +0000199 group.add_argument(
200 '--enable-crash-dialog',
201 dest='disable_crash_dialog',
202 action='store_false',
203 help='(Windows only) When LLDB crashes, display the Windows crash dialog.')
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000204 group.set_defaults(disable_crash_dialog=True)
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000205
Todd Fialafed95662015-09-03 18:58:44 +0000206 group = parser.add_argument_group('Parallel execution options')
207 group.add_argument(
208 '--inferior',
209 action='store_true',
210 help=('specify this invocation is a multiprocess inferior, '
211 'used internally'))
212 group.add_argument(
213 '--no-multiprocess',
214 action='store_true',
215 help='skip running the multiprocess test runner')
216 group.add_argument(
Todd Fialafed95662015-09-03 18:58:44 +0000217 '--threads',
218 type=int,
219 dest='num_threads',
Todd Fialae83f1402015-09-18 22:45:31 +0000220 default=default_thread_count(),
Todd Fialafed95662015-09-03 18:58:44 +0000221 help=('The number of threads/processes to use when running tests '
222 'separately, defaults to the number of CPU cores available'))
Todd Fiala8cbeed32015-09-08 22:22:33 +0000223 group.add_argument(
Todd Fialafed95662015-09-03 18:58:44 +0000224 '--test-subdir',
225 action='store',
226 help='Specify a test subdirectory to use relative to the test root dir'
227 )
Todd Fiala8cbeed32015-09-08 22:22:33 +0000228 group.add_argument(
229 '--test-runner-name',
230 action='store',
231 help=('Specify a test runner strategy. Valid values: multiprocessing,'
232 ' multiprocessing-pool, serial, threading, threading-pool')
233 )
Todd Fialafed95662015-09-03 18:58:44 +0000234
Todd Fiala68615ce2015-09-15 21:38:04 +0000235 # Test results support.
236 group = parser.add_argument_group('Test results options')
237 group.add_argument(
Todd Fialacee6a6a2015-11-09 18:51:04 +0000238 '--curses',
239 action='store_true',
240 help='Shortcut for specifying test results using the curses formatter')
241 group.add_argument(
Todd Fiala68615ce2015-09-15 21:38:04 +0000242 '--results-file',
243 action='store',
244 help=('Specifies the file where test results will be written '
245 'according to the results-formatter class used'))
246 group.add_argument(
247 '--results-port',
248 action='store',
249 type=int,
250 help=('Specifies the localhost port to which the results '
251 'formatted output should be sent'))
252 group.add_argument(
253 '--results-formatter',
254 action='store',
255 help=('Specifies the full package/module/class name used to translate '
256 'test events into some kind of meaningful report, written to '
257 'the designated output results file-like object'))
258 group.add_argument(
Todd Fialaea736242015-09-23 15:21:28 +0000259 '--results-formatter-option',
260 '-O',
261 action='append',
262 dest='results_formatter_options',
263 help=('Specify an option to pass to the formatter. '
264 'Use --results-formatter-option="--option1=val1" '
265 'syntax. Note the "=" is critical, don\'t include whitespace.'))
Todd Fiala33896a92015-09-18 21:01:13 +0000266 group.add_argument(
267 '--event-add-entries',
268 action='store',
269 help=('Specify comma-separated KEY=VAL entries to add key and value '
Todd Fiala40b180e2015-09-18 23:46:30 +0000270 'pairs to all test events generated by this test run. VAL may '
271 'be specified as VAL:TYPE, where TYPE may be int to convert '
272 'the value to an int'))
Todd Fiala93153922015-12-12 19:26:56 +0000273
Todd Fiala685a7572015-12-14 21:28:46 +0000274 # Re-run related arguments
Todd Fiala93153922015-12-12 19:26:56 +0000275 group = parser.add_argument_group('Test Re-run Options')
276 group.add_argument(
277 '--rerun-all-issues',
278 action='store_true',
279 help=('Re-run all issues that occurred during the test run '
280 'irrespective of the test method\'s marking as flakey. '
281 'Default behavior is to apply re-runs only to flakey '
282 'tests that generate issues.'))
Todd Fiala685a7572015-12-14 21:28:46 +0000283 group.add_argument(
284 '--rerun-max-file-threshold',
285 action='store',
286 type=int,
287 default=50,
288 help=('Maximum number of files requiring a rerun beyond '
289 'which the rerun will not occur. This is meant to '
290 'stop a catastrophically failing test suite from forcing '
291 'all tests to be rerun in the single-worker phase.'))
292
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000293 # Remove the reference to our helper function
294 del X
295
296 group = parser.add_argument_group('Test directories')
Kate Stoneb9c1b512016-09-06 20:57:50 +0000297 group.add_argument(
298 'args',
299 metavar='test-dir',
300 nargs='*',
301 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.')
Vince Harronf8b9a1d2015-05-18 19:40:54 +0000302
Vince Harron8994fed2015-05-22 19:49:23 +0000303 return parser