blob: e0d09ae977d5e70c8ecb1cd17c56fddb476f59ab [file] [log] [blame]
Daniel Dunbar3b709d52012-05-08 16:50:35 +00001lit - LLVM Integrated Tester
2============================
3
Daniel Dunbar3b709d52012-05-08 16:50:35 +00004SYNOPSIS
5--------
6
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +00007:program:`lit` [*options*] [*tests*]
Daniel Dunbar3b709d52012-05-08 16:50:35 +00008
Daniel Dunbar3b709d52012-05-08 16:50:35 +00009DESCRIPTION
10-----------
11
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000012: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.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000016
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000017: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`).
Daniel Dunbar3b709d52012-05-08 16:50:35 +000020
21Each specified test will be executed (potentially in parallel) and once all
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000022tests 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.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000026
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000027By 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.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000030
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000031:program:`lit` also includes a number of options for controlling how tests are
32executed (specific features may depend on the particular test format). See
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +000033:ref:`execution-options` for more information.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000034
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000035Finally, :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.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000038
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000039Users interested in the :program:`lit` architecture or designing a
40:program:`lit` testing implementation should see :ref:`lit-infrastructure`.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000041
42GENERAL OPTIONS
43---------------
44
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000045.. option:: -h, --help
Daniel Dunbar3b709d52012-05-08 16:50:35 +000046
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000047 Show the :program:`lit` help message.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000048
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000049.. option:: -j N, --threads=N
Daniel Dunbar3b709d52012-05-08 16:50:35 +000050
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000051 Run ``N`` tests in parallel. By default, this is automatically chosen to
52 match the number of detected available CPUs.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000053
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000054.. option:: --config-prefix=NAME
Daniel Dunbar3b709d52012-05-08 16:50:35 +000055
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000056 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`.
Daniel Dunbar3b709d52012-05-08 16:50:35 +000058
Matthias Braun9e6fc422017-02-09 23:03:22 +000059.. option:: -D NAME[=VALUE], --param NAME[=VALUE]
Daniel Dunbar3b709d52012-05-08 16:50:35 +000060
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000061 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
Daniel Dunbar3b709d52012-05-08 16:50:35 +000063 dependent.
64
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +000065.. _output-options:
Daniel Dunbar3b709d52012-05-08 16:50:35 +000066
67OUTPUT OPTIONS
68--------------
69
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000070.. option:: -q, --quiet
Daniel Dunbar3b709d52012-05-08 16:50:35 +000071
72 Suppress any output except for test failures.
73
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000074.. option:: -s, --succinct
Daniel Dunbar3b709d52012-05-08 16:50:35 +000075
76 Show less output, for example don't show information on tests that pass.
77
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000078.. option:: -v, --verbose
Daniel Dunbar3b709d52012-05-08 16:50:35 +000079
80 Show more information on test failures, for example the entire test output
81 instead of just the test result.
82
George Karpenkov92aa19c2017-07-13 19:26:27 +000083.. option:: -vv, --echo-all-commands
84
85 Echo all commands to stdout, as they are being executed.
86 This can be valuable for debugging test failures, as the last echoed command
87 will be the one which has failed.
Joel E. Denny1d958442018-05-31 00:55:32 +000088 :program:`lit` normally inserts a no-op command (``:`` in the case of bash)
89 with argument ``'RUN: at line N'`` before each command pipeline, and this
90 option also causes those no-op commands to be echoed to stdout to help you
91 locate the source line of the failed command.
George Karpenkov92aa19c2017-07-13 19:26:27 +000092 This option implies ``--verbose``.
93
Matthias Braunec61a6a2015-11-06 01:13:40 +000094.. option:: -a, --show-all
95
96 Show more information about all tests, for example the entire test
97 commandline and output.
98
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +000099.. option:: --no-progress-bar
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000100
101 Do not use curses based progress bar.
102
Eric Fiselier156ce6c2014-07-31 20:11:13 +0000103.. option:: --show-unsupported
104
105 Show the names of unsupported tests.
106
Eric Fiselier2785e772014-08-02 01:29:52 +0000107.. option:: --show-xfail
108
109 Show the names of tests that were expected to fail.
110
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000111.. _execution-options:
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000112
113EXECUTION OPTIONS
114-----------------
115
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000116.. option:: --path=PATH
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000117
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000118 Specify an additional ``PATH`` to use when searching for executables in tests.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000119
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000120.. option:: --vg
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000121
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000122 Run individual tests under valgrind (using the memcheck tool). The
123 ``--error-exitcode`` argument for valgrind is used so that valgrind failures
124 will cause the program to exit with a non-zero status.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000125
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000126 When this option is enabled, :program:`lit` will also automatically provide a
127 "``valgrind``" feature that can be used to conditionally disable (or expect
128 failure in) certain tests.
Daniel Dunbarf8545972012-10-19 20:12:00 +0000129
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000130.. option:: --vg-arg=ARG
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000131
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000132 When :option:`--vg` is used, specify an additional argument to pass to
133 :program:`valgrind` itself.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000134
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000135.. option:: --vg-leak
Daniel Dunbarf8545972012-10-19 20:12:00 +0000136
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000137 When :option:`--vg` is used, enable memory leak checks. When this option is
138 enabled, :program:`lit` will also automatically provide a "``vg_leak``"
139 feature that can be used to conditionally disable (or expect failure in)
140 certain tests.
Daniel Dunbarf8545972012-10-19 20:12:00 +0000141
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000142.. option:: --time-tests
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000143
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000144 Track the wall time individual tests take to execute and includes the results
145 in the summary output. This is useful for determining which tests in a test
146 suite take the most time to execute. Note that this option is most useful
147 with ``-j 1``.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000148
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000149.. _selection-options:
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000150
151SELECTION OPTIONS
152-----------------
153
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000154.. option:: --max-tests=N
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000155
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000156 Run at most ``N`` tests and then terminate.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000157
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000158.. option:: --max-time=N
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000159
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000160 Spend at most ``N`` seconds (approximately) running tests and then terminate.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000161
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000162.. option:: --shuffle
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000163
164 Run the tests in a random order.
165
Graydon Hoare57f557b2017-01-18 18:12:20 +0000166.. option:: --num-shards=M
167
168 Divide the set of selected tests into ``M`` equal-sized subsets or
169 "shards", and run only one of them. Must be used with the
170 ``--run-shard=N`` option, which selects the shard to run. The environment
171 variable ``LIT_NUM_SHARDS`` can also be used in place of this
172 option. These two options provide a coarse mechanism for paritioning large
173 testsuites, for parallel execution on separate machines (say in a large
174 testing farm).
175
176.. option:: --run-shard=N
177
178 Select which shard to run, assuming the ``--num-shards=M`` option was
179 provided. The two options must be used together, and the value of ``N``
180 must be in the range ``1..M``. The environment variable
181 ``LIT_RUN_SHARD`` can also be used in place of this option.
182
George Karpenkov80c7e632017-07-07 00:22:11 +0000183.. option:: --filter=REGEXP
184
185 Run only those tests whose name matches the regular expression specified in
186 ``REGEXP``. The environment variable ``LIT_FILTER`` can be also used in place
187 of this option, which is especially useful in environments where the call
188 to ``lit`` is issued indirectly.
189
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000190ADDITIONAL OPTIONS
191------------------
192
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000193.. option:: --debug
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000194
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000195 Run :program:`lit` in debug mode, for debugging configuration issues and
196 :program:`lit` itself.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000197
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000198.. option:: --show-suites
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000199
Daniel Dunbarabb9de52013-08-08 20:59:25 +0000200 List the discovered test suites and exit.
201
202.. option:: --show-tests
203
Eric Christopher933d2bd2015-06-19 01:53:21 +0000204 List all of the discovered tests and exit.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000205
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000206EXIT STATUS
207-----------
208
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000209:program:`lit` will exit with an exit code of 1 if there are any FAIL or XPASS
210results. Otherwise, it will exit with the status 0. Other exit codes are used
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000211for non-test related failures (for example a user error or an internal program
212error).
213
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000214.. _test-discovery:
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000215
216TEST DISCOVERY
217--------------
218
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000219The inputs passed to :program:`lit` can be either individual tests, or entire
220directories or hierarchies of tests to run. When :program:`lit` starts up, the
221first thing it does is convert the inputs into a complete list of tests to run
222as part of *test discovery*.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000223
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000224In the :program:`lit` model, every test must exist inside some *test suite*.
225:program:`lit` resolves the inputs specified on the command line to test suites
226by searching upwards from the input path until it finds a :file:`lit.cfg` or
227:file:`lit.site.cfg` file. These files serve as both a marker of test suites
228and as configuration files which :program:`lit` loads in order to understand
229how to find and run the tests inside the test suite.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000230
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000231Once :program:`lit` has mapped the inputs into test suites it traverses the
232list of inputs adding tests for individual files and recursively searching for
233tests in directories.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000234
235This behavior makes it easy to specify a subset of tests to run, while still
236allowing the test suite configuration to control exactly how tests are
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000237interpreted. In addition, :program:`lit` always identifies tests by the test
238suite they are in, and their relative path inside the test suite. For
239appropriately configured projects, this allows :program:`lit` to provide
240convenient and flexible support for out-of-tree builds.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000241
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000242.. _test-status-results:
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000243
244TEST STATUS RESULTS
245-------------------
246
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000247Each test ultimately produces one of the following six results:
248
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000249**PASS**
250
251 The test succeeded.
252
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000253**XFAIL**
254
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000255 The test failed, but that is expected. This is used for test formats which allow
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000256 specifying that a test does not currently work, but wish to leave it in the test
257 suite.
258
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000259**XPASS**
260
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000261 The test succeeded, but it was expected to fail. This is used for tests which
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000262 were specified as expected to fail, but are now succeeding (generally because
263 the feature they test was broken and has been fixed).
264
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000265**FAIL**
266
267 The test failed.
268
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000269**UNRESOLVED**
270
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000271 The test result could not be determined. For example, this occurs when the test
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000272 could not be run, the test itself is invalid, or the test was interrupted.
273
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000274**UNSUPPORTED**
275
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000276 The test is not supported in this environment. This is used by test formats
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000277 which can report unsupported tests.
278
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000279Depending on the test format tests may produce additional information about
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000280their status (generally only for failures). See the :ref:`output-options`
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000281section for more information.
282
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000283.. _lit-infrastructure:
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000284
285LIT INFRASTRUCTURE
286------------------
287
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000288This section describes the :program:`lit` testing architecture for users interested in
289creating a new :program:`lit` testing implementation, or extending an existing one.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000290
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000291:program:`lit` proper is primarily an infrastructure for discovering and running
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000292arbitrary tests, and to expose a single convenient interface to these
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000293tests. :program:`lit` itself doesn't know how to run tests, rather this logic is
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000294defined by *test suites*.
295
296TEST SUITES
297~~~~~~~~~~~
298
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000299As described in :ref:`test-discovery`, tests are always located inside a *test
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000300suite*. Test suites serve to define the format of the tests they contain, the
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000301logic for finding those tests, and any additional information to run the tests.
302
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000303:program:`lit` identifies test suites as directories containing ``lit.cfg`` or
304``lit.site.cfg`` files (see also :option:`--config-prefix`). Test suites are
305initially discovered by recursively searching up the directory hierarchy for
306all the input files passed on the command line. You can use
307:option:`--show-suites` to display the discovered test suites at startup.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000308
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000309Once a test suite is discovered, its config file is loaded. Config files
310themselves are Python modules which will be executed. When the config file is
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000311executed, two important global variables are predefined:
312
Eric Fiselier407460e2014-08-15 05:54:19 +0000313**lit_config**
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000314
315 The global **lit** configuration object (a *LitConfig* instance), which defines
316 the builtin test formats, global configuration parameters, and other helper
317 routines for implementing test configurations.
318
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000319**config**
320
321 This is the config object (a *TestingConfig* instance) for the test suite,
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000322 which the config file is expected to populate. The following variables are also
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000323 available on the *config* object, some of which must be set by the config and
324 others are optional or predefined:
325
326 **name** *[required]* The name of the test suite, for use in reports and
327 diagnostics.
328
329 **test_format** *[required]* The test format object which will be used to
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000330 discover and run tests in the test suite. Generally this will be a builtin test
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000331 format available from the *lit.formats* module.
332
Sergey Matveev52d65ab2013-05-30 12:37:52 +0000333 **test_source_root** The filesystem path to the test suite root. For out-of-dir
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000334 builds this is the directory that will be scanned for tests.
335
336 **test_exec_root** For out-of-dir builds, the path to the test suite root inside
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000337 the object directory. This is where tests will be run and temporary output files
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000338 placed.
339
340 **environment** A dictionary representing the environment to use when executing
341 tests in the suite.
342
343 **suffixes** For **lit** test formats which scan directories for tests, this
Dmitri Gribenko35f63dd2013-01-19 20:35:18 +0000344 variable is a list of suffixes to identify test files. Used by: *ShTest*.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000345
346 **substitutions** For **lit** test formats which substitute variables into a test
Dmitri Gribenko35f63dd2013-01-19 20:35:18 +0000347 script, the list of substitutions to perform. Used by: *ShTest*.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000348
349 **unsupported** Mark an unsupported directory, all tests within it will be
Dmitri Gribenko35f63dd2013-01-19 20:35:18 +0000350 reported as unsupported. Used by: *ShTest*.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000351
352 **parent** The parent configuration, this is the config object for the directory
353 containing the test suite, or None.
354
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000355 **root** The root configuration. This is the top-most :program:`lit` configuration in
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000356 the project.
357
Rafael Espindolac1bb2d42013-07-26 22:32:58 +0000358 **pipefail** Normally a test using a shell pipe fails if any of the commands
359 on the pipe fail. If this is not desired, setting this variable to false
360 makes the test fail only if the last command in the pipe fails.
361
Daniel Sanders26a50222016-07-26 13:23:27 +0000362 **available_features** A set of features that can be used in `XFAIL`,
363 `REQUIRES`, and `UNSUPPORTED` directives.
364
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000365TEST DISCOVERY
366~~~~~~~~~~~~~~
367
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000368Once test suites are located, :program:`lit` recursively traverses the source
Sergey Matveev52d65ab2013-05-30 12:37:52 +0000369directory (following *test_source_root*) looking for tests. When :program:`lit`
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000370enters a sub-directory, it first checks to see if a nested test suite is
371defined in that directory. If so, it loads that test suite recursively,
372otherwise it instantiates a local test config for the directory (see
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000373:ref:`local-configuration-files`).
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000374
375Tests are identified by the test suite they are contained within, and the
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000376relative path inside that suite. Note that the relative path may not refer to
377an actual file on disk; some test formats (such as *GoogleTest*) define
378"virtual tests" which have a path that contains both the path to the actual
379test file and a subpath to identify the virtual test.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000380
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000381.. _local-configuration-files:
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000382
383LOCAL CONFIGURATION FILES
384~~~~~~~~~~~~~~~~~~~~~~~~~
385
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000386When :program:`lit` loads a subdirectory in a test suite, it instantiates a
Jonathan Roelofsf5166142015-02-07 17:18:26 +0000387local test configuration by cloning the configuration for the parent directory
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000388--- the root of this configuration chain will always be a test suite. Once the
389test configuration is cloned :program:`lit` checks for a *lit.local.cfg* file
390in the subdirectory. If present, this file will be loaded and can be used to
391specialize the configuration for each individual directory. This facility can
392be used to define subdirectories of optional tests, or to change other
393configuration parameters --- for example, to change the test format, or the
394suffixes which identify test files.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000395
Paul Robinson0a27f402016-04-04 17:14:45 +0000396PRE-DEFINED SUBSTITUTIONS
397~~~~~~~~~~~~~~~~~~~~~~~~~~
398
399:program:`lit` provides various patterns that can be used with the RUN command.
David Bozier56b920f2017-02-09 14:12:30 +0000400These are defined in TestRunner.py. The base set of substitutions are:
Paul Robinson0a27f402016-04-04 17:14:45 +0000401
Jordan Rosea17d2002017-10-14 04:01:27 +0000402 ========== ==============
403 Macro Substitution
404 ========== ==============
405 %s source path (path to the file currently being run)
406 %S source dir (directory of the file currently being run)
407 %p same as %S
408 %{pathsep} path separator
409 %t temporary file name unique to the test
Kuba Mracekd41a5452018-08-25 01:27:48 +0000410 %T parent directory of %t (not unique, deprecated, do not use)
Jordan Rosea17d2002017-10-14 04:01:27 +0000411 %% %
412 ========== ==============
Paul Robinson0a27f402016-04-04 17:14:45 +0000413
David Bozier56b920f2017-02-09 14:12:30 +0000414Other substitutions are provided that are variations on this base set and
415further substitution patterns can be defined by each test module. See the
416modules :ref:`local-configuration-files`.
Paul Robinson0a27f402016-04-04 17:14:45 +0000417
David Bozier56b920f2017-02-09 14:12:30 +0000418More detailed information on substitutions can be found in the
Paul Robinson0a27f402016-04-04 17:14:45 +0000419:doc:`../TestingGuide`.
420
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000421TEST RUN OUTPUT FORMAT
422~~~~~~~~~~~~~~~~~~~~~~
423
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000424The :program:`lit` output for a test run conforms to the following schema, in
425both short and verbose modes (although in short mode no PASS lines will be
426shown). This schema has been chosen to be relatively easy to reliably parse by
427a machine (for example in buildbot log scraping), and for other tools to
428generate.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000429
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000430Each test result is expected to appear on a line that matches:
431
432.. code-block:: none
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000433
Eli Bendersky1f9f73a2012-11-20 00:26:08 +0000434 <result code>: <test name> (<progress info>)
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000435
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000436where ``<result-code>`` is a standard test result such as PASS, FAIL, XFAIL,
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000437XPASS, UNRESOLVED, or UNSUPPORTED. The performance result codes of IMPROVED and
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000438REGRESSED are also allowed.
439
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000440The ``<test name>`` field can consist of an arbitrary string containing no
441newline.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000442
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000443The ``<progress info>`` field can be used to report progress information such
444as (1/300) or can be empty, but even when empty the parentheses are required.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000445
446Each test result may include additional (multiline) log information in the
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000447following format:
448
449.. code-block:: none
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000450
Eli Bendersky1f9f73a2012-11-20 00:26:08 +0000451 <log delineator> TEST '(<test name>)' <trailing delineator>
452 ... log message ...
453 <log delineator>
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000454
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000455where ``<test name>`` should be the name of a preceding reported test, ``<log
456delineator>`` is a string of "*" characters *at least* four characters long
457(the recommended length is 20), and ``<trailing delineator>`` is an arbitrary
458(unparsed) string.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000459
460The following is an example of a test run output which consists of four tests A,
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000461B, C, and D, and a log message for the failing test C:
462
463.. code-block:: none
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000464
465 PASS: A (1 of 4)
466 PASS: B (2 of 4)
467 FAIL: C (3 of 4)
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000468 ******************** TEST 'C' FAILED ********************
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000469 Test 'C' failed as a result of exit code 1.
Dmitri Gribenkoe26b62c2012-11-29 17:05:34 +0000470 ********************
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000471 PASS: D (4 of 4)
472
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000473LIT EXAMPLE TESTS
474~~~~~~~~~~~~~~~~~
475
Dmitri Gribenkobc5fb062012-11-29 18:03:08 +0000476The :program:`lit` distribution contains several example implementations of
477test suites in the *ExampleTests* directory.
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000478
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000479SEE ALSO
480--------
481
Daniel Dunbar3b709d52012-05-08 16:50:35 +0000482valgrind(1)