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