1lit - LLVM Integrated Tester
2============================
3
4SYNOPSIS
5--------
6
7:program:`lit` [*options*] [*tests*]
8
9DESCRIPTION
10-----------
11
12:program:`lit` is a portable tool for executing LLVM and Clang style test
13suites, summarizing their results, and providing indication of failures.
14:program:`lit` is designed to be a lightweight testing tool with as simple a
15user interface as possible.
16
17:program:`lit` should be run with one or more *tests* to run specified on the
18command line.  Tests can be either individual test files or directories to
19search for tests (see :ref:`test-discovery`).
20
21Each specified test will be executed (potentially in parallel) and once all
22tests have been run :program:`lit` will print summary information on the number
23of tests which passed or failed (see :ref:`test-status-results`).  The
24:program:`lit` program will execute with a non-zero exit code if any tests
25fail.
26
27By default :program:`lit` will use a succinct progress display and will only
28print summary information for test failures.  See :ref:`output-options` for
29options controlling the :program:`lit` progress display and output.
30
31:program:`lit` also includes a number of options for controlling how tests are
32executed (specific features may depend on the particular test format).  See
33:ref:`execution-options` for more information.
34
35Finally, :program:`lit` also supports additional options for only running a
36subset of the options specified on the command line, see
37:ref:`selection-options` for more information.
38
39Users interested in the :program:`lit` architecture or designing a
40:program:`lit` testing implementation should see :ref:`lit-infrastructure`.
41
42GENERAL OPTIONS
43---------------
44
45.. option:: -h, --help
46
47 Show the :program:`lit` help message.
48
49.. option:: -j N, --threads=N
50
51 Run ``N`` tests in parallel.  By default, this is automatically chosen to
52 match the number of detected available CPUs.
53
54.. option:: --config-prefix=NAME
55
56 Search for :file:`{NAME}.cfg` and :file:`{NAME}.site.cfg` when searching for
57 test suites, instead of :file:`lit.cfg` and :file:`lit.site.cfg`.
58
59.. option:: -D NAME[=VALUE], --param NAME[=VALUE]
60
61 Add a user defined parameter ``NAME`` with the given ``VALUE`` (or the empty
62 string if not given).  The meaning and use of these parameters is test suite
63 dependent.
64
65.. _output-options:
66
67OUTPUT OPTIONS
68--------------
69
70.. option:: -q, --quiet
71
72 Suppress any output except for test failures.
73
74.. option:: -s, --succinct
75
76 Show less output, for example don't show information on tests that pass.
77
78.. option:: -v, --verbose
79
80 Show more information on test failures, for example the entire test output
81 instead of just the test result.
82
83.. option:: -a, --show-all
84
85 Show more information about all tests, for example the entire test
86 commandline and output.
87
88.. option:: --no-progress-bar
89
90 Do not use curses based progress bar.
91
92.. option:: --show-unsupported
93
94 Show the names of unsupported tests.
95
96.. option:: --show-xfail
97
98 Show the names of tests that were expected to fail.
99
100.. _execution-options:
101
102EXECUTION OPTIONS
103-----------------
104
105.. option:: --path=PATH
106
107 Specify an additional ``PATH`` to use when searching for executables in tests.
108
109.. option:: --vg
110
111 Run individual tests under valgrind (using the memcheck tool).  The
112 ``--error-exitcode`` argument for valgrind is used so that valgrind failures
113 will cause the program to exit with a non-zero status.
114
115 When this option is enabled, :program:`lit` will also automatically provide a
116 "``valgrind``" feature that can be used to conditionally disable (or expect
117 failure in) certain tests.
118
119.. option:: --vg-arg=ARG
120
121 When :option:`--vg` is used, specify an additional argument to pass to
122 :program:`valgrind` itself.
123
124.. option:: --vg-leak
125
126 When :option:`--vg` is used, enable memory leak checks.  When this option is
127 enabled, :program:`lit` will also automatically provide a "``vg_leak``"
128 feature that can be used to conditionally disable (or expect failure in)
129 certain tests.
130
131.. option:: --time-tests
132
133 Track the wall time individual tests take to execute and includes the results
134 in the summary output.  This is useful for determining which tests in a test
135 suite take the most time to execute.  Note that this option is most useful
136 with ``-j 1``.
137
138.. _selection-options:
139
140SELECTION OPTIONS
141-----------------
142
143.. option:: --max-tests=N
144
145 Run at most ``N`` tests and then terminate.
146
147.. option:: --max-time=N
148
149 Spend at most ``N`` seconds (approximately) running tests and then terminate.
150
151.. option:: --shuffle
152
153 Run the tests in a random order.
154
155.. option:: --num-shards=M
156
157 Divide the set of selected tests into ``M`` equal-sized subsets or
158 "shards", and run only one of them.  Must be used with the
159 ``--run-shard=N`` option, which selects the shard to run. The environment
160 variable ``LIT_NUM_SHARDS`` can also be used in place of this
161 option. These two options provide a coarse mechanism for paritioning large
162 testsuites, for parallel execution on separate machines (say in a large
163 testing farm).
164
165.. option:: --run-shard=N
166
167 Select which shard to run, assuming the ``--num-shards=M`` option was
168 provided. The two options must be used together, and the value of ``N``
169 must be in the range ``1..M``. The environment variable
170 ``LIT_RUN_SHARD`` can also be used in place of this option.
171
172.. option:: --filter=REGEXP
173
174  Run only those tests whose name matches the regular expression specified in
175  ``REGEXP``. The environment variable ``LIT_FILTER`` can be also used in place
176  of this option, which is especially useful in environments where the call
177  to ``lit`` is issued indirectly.
178
179ADDITIONAL OPTIONS
180------------------
181
182.. option:: --debug
183
184 Run :program:`lit` in debug mode, for debugging configuration issues and
185 :program:`lit` itself.
186
187.. option:: --show-suites
188
189 List the discovered test suites and exit.
190
191.. option:: --show-tests
192
193 List all of the discovered tests and exit.
194
195EXIT STATUS
196-----------
197
198:program:`lit` will exit with an exit code of 1 if there are any FAIL or XPASS
199results.  Otherwise, it will exit with the status 0.  Other exit codes are used
200for non-test related failures (for example a user error or an internal program
201error).
202
203.. _test-discovery:
204
205TEST DISCOVERY
206--------------
207
208The inputs passed to :program:`lit` can be either individual tests, or entire
209directories or hierarchies of tests to run.  When :program:`lit` starts up, the
210first thing it does is convert the inputs into a complete list of tests to run
211as part of *test discovery*.
212
213In the :program:`lit` model, every test must exist inside some *test suite*.
214:program:`lit` resolves the inputs specified on the command line to test suites
215by searching upwards from the input path until it finds a :file:`lit.cfg` or
216:file:`lit.site.cfg` file.  These files serve as both a marker of test suites
217and as configuration files which :program:`lit` loads in order to understand
218how to find and run the tests inside the test suite.
219
220Once :program:`lit` has mapped the inputs into test suites it traverses the
221list of inputs adding tests for individual files and recursively searching for
222tests in directories.
223
224This behavior makes it easy to specify a subset of tests to run, while still
225allowing the test suite configuration to control exactly how tests are
226interpreted.  In addition, :program:`lit` always identifies tests by the test
227suite they are in, and their relative path inside the test suite.  For
228appropriately configured projects, this allows :program:`lit` to provide
229convenient and flexible support for out-of-tree builds.
230
231.. _test-status-results:
232
233TEST STATUS RESULTS
234-------------------
235
236Each test ultimately produces one of the following six results:
237
238**PASS**
239
240 The test succeeded.
241
242**XFAIL**
243
244 The test failed, but that is expected.  This is used for test formats which allow
245 specifying that a test does not currently work, but wish to leave it in the test
246 suite.
247
248**XPASS**
249
250 The test succeeded, but it was expected to fail.  This is used for tests which
251 were specified as expected to fail, but are now succeeding (generally because
252 the feature they test was broken and has been fixed).
253
254**FAIL**
255
256 The test failed.
257
258**UNRESOLVED**
259
260 The test result could not be determined.  For example, this occurs when the test
261 could not be run, the test itself is invalid, or the test was interrupted.
262
263**UNSUPPORTED**
264
265 The test is not supported in this environment.  This is used by test formats
266 which can report unsupported tests.
267
268Depending on the test format tests may produce additional information about
269their status (generally only for failures).  See the :ref:`output-options`
270section for more information.
271
272.. _lit-infrastructure:
273
274LIT INFRASTRUCTURE
275------------------
276
277This section describes the :program:`lit` testing architecture for users interested in
278creating a new :program:`lit` testing implementation, or extending an existing one.
279
280:program:`lit` proper is primarily an infrastructure for discovering and running
281arbitrary tests, and to expose a single convenient interface to these
282tests. :program:`lit` itself doesn't know how to run tests, rather this logic is
283defined by *test suites*.
284
285TEST SUITES
286~~~~~~~~~~~
287
288As described in :ref:`test-discovery`, tests are always located inside a *test
289suite*.  Test suites serve to define the format of the tests they contain, the
290logic for finding those tests, and any additional information to run the tests.
291
292:program:`lit` identifies test suites as directories containing ``lit.cfg`` or
293``lit.site.cfg`` files (see also :option:`--config-prefix`).  Test suites are
294initially discovered by recursively searching up the directory hierarchy for
295all the input files passed on the command line.  You can use
296:option:`--show-suites` to display the discovered test suites at startup.
297
298Once a test suite is discovered, its config file is loaded.  Config files
299themselves are Python modules which will be executed.  When the config file is
300executed, two important global variables are predefined:
301
302**lit_config**
303
304 The global **lit** configuration object (a *LitConfig* instance), which defines
305 the builtin test formats, global configuration parameters, and other helper
306 routines for implementing test configurations.
307
308**config**
309
310 This is the config object (a *TestingConfig* instance) for the test suite,
311 which the config file is expected to populate.  The following variables are also
312 available on the *config* object, some of which must be set by the config and
313 others are optional or predefined:
314
315 **name** *[required]* The name of the test suite, for use in reports and
316 diagnostics.
317
318 **test_format** *[required]* The test format object which will be used to
319 discover and run tests in the test suite.  Generally this will be a builtin test
320 format available from the *lit.formats* module.
321
322 **test_source_root** The filesystem path to the test suite root.  For out-of-dir
323 builds this is the directory that will be scanned for tests.
324
325 **test_exec_root** For out-of-dir builds, the path to the test suite root inside
326 the object directory.  This is where tests will be run and temporary output files
327 placed.
328
329 **environment** A dictionary representing the environment to use when executing
330 tests in the suite.
331
332 **suffixes** For **lit** test formats which scan directories for tests, this
333 variable is a list of suffixes to identify test files.  Used by: *ShTest*.
334
335 **substitutions** For **lit** test formats which substitute variables into a test
336 script, the list of substitutions to perform.  Used by: *ShTest*.
337
338 **unsupported** Mark an unsupported directory, all tests within it will be
339 reported as unsupported.  Used by: *ShTest*.
340
341 **parent** The parent configuration, this is the config object for the directory
342 containing the test suite, or None.
343
344 **root** The root configuration.  This is the top-most :program:`lit` configuration in
345 the project.
346
347 **pipefail** Normally a test using a shell pipe fails if any of the commands
348 on the pipe fail. If this is not desired, setting this variable to false
349 makes the test fail only if the last command in the pipe fails.
350
351 **available_features** A set of features that can be used in `XFAIL`,
352 `REQUIRES`, and `UNSUPPORTED` directives.
353
354TEST DISCOVERY
355~~~~~~~~~~~~~~
356
357Once test suites are located, :program:`lit` recursively traverses the source
358directory (following *test_source_root*) looking for tests.  When :program:`lit`
359enters a sub-directory, it first checks to see if a nested test suite is
360defined in that directory.  If so, it loads that test suite recursively,
361otherwise it instantiates a local test config for the directory (see
362:ref:`local-configuration-files`).
363
364Tests are identified by the test suite they are contained within, and the
365relative path inside that suite.  Note that the relative path may not refer to
366an actual file on disk; some test formats (such as *GoogleTest*) define
367"virtual tests" which have a path that contains both the path to the actual
368test file and a subpath to identify the virtual test.
369
370.. _local-configuration-files:
371
372LOCAL CONFIGURATION FILES
373~~~~~~~~~~~~~~~~~~~~~~~~~
374
375When :program:`lit` loads a subdirectory in a test suite, it instantiates a
376local test configuration by cloning the configuration for the parent directory
377--- the root of this configuration chain will always be a test suite.  Once the
378test configuration is cloned :program:`lit` checks for a *lit.local.cfg* file
379in the subdirectory.  If present, this file will be loaded and can be used to
380specialize the configuration for each individual directory.  This facility can
381be used to define subdirectories of optional tests, or to change other
382configuration parameters --- for example, to change the test format, or the
383suffixes which identify test files.
384
385PRE-DEFINED SUBSTITUTIONS
386~~~~~~~~~~~~~~~~~~~~~~~~~~
387
388:program:`lit` provides various patterns that can be used with the RUN command.
389These are defined in TestRunner.py. The base set of substitutions are:
390
391 ========== ==============
392  Macro      Substitution
393 ========== ==============
394 %s         source path (path to the file currently being run)
395 %S         source dir (directory of the file currently being run)
396 %p         same as %S
397 %{pathsep} path separator
398 %t         temporary file name unique to the test
399 %T         temporary directory unique to the test
400 %%         %
401 ========== ==============
402
403Other substitutions are provided that are variations on this base set and
404further substitution patterns can be defined by each test module. See the
405modules :ref:`local-configuration-files`.
406
407More detailed information on substitutions can be found in the
408:doc:`../TestingGuide`.
409
410TEST RUN OUTPUT FORMAT
411~~~~~~~~~~~~~~~~~~~~~~
412
413The :program:`lit` output for a test run conforms to the following schema, in
414both short and verbose modes (although in short mode no PASS lines will be
415shown).  This schema has been chosen to be relatively easy to reliably parse by
416a machine (for example in buildbot log scraping), and for other tools to
417generate.
418
419Each test result is expected to appear on a line that matches:
420
421.. code-block:: none
422
423  <result code>: <test name> (<progress info>)
424
425where ``<result-code>`` is a standard test result such as PASS, FAIL, XFAIL,
426XPASS, UNRESOLVED, or UNSUPPORTED.  The performance result codes of IMPROVED and
427REGRESSED are also allowed.
428
429The ``<test name>`` field can consist of an arbitrary string containing no
430newline.
431
432The ``<progress info>`` field can be used to report progress information such
433as (1/300) or can be empty, but even when empty the parentheses are required.
434
435Each test result may include additional (multiline) log information in the
436following format:
437
438.. code-block:: none
439
440  <log delineator> TEST '(<test name>)' <trailing delineator>
441  ... log message ...
442  <log delineator>
443
444where ``<test name>`` should be the name of a preceding reported test, ``<log
445delineator>`` is a string of "*" characters *at least* four characters long
446(the recommended length is 20), and ``<trailing delineator>`` is an arbitrary
447(unparsed) string.
448
449The following is an example of a test run output which consists of four tests A,
450B, C, and D, and a log message for the failing test C:
451
452.. code-block:: none
453
454  PASS: A (1 of 4)
455  PASS: B (2 of 4)
456  FAIL: C (3 of 4)
457  ******************** TEST 'C' FAILED ********************
458  Test 'C' failed as a result of exit code 1.
459  ********************
460  PASS: D (4 of 4)
461
462LIT EXAMPLE TESTS
463~~~~~~~~~~~~~~~~~
464
465The :program:`lit` distribution contains several example implementations of
466test suites in the *ExampleTests* directory.
467
468SEE ALSO
469--------
470
471valgrind(1)
472