blob: 929aed798b03b883b19076cd390482aeef5db10f [file] [log] [blame]
Daniel Dunbarbe7ada72009-09-08 05:31:18 +00001=pod
2
3=head1 NAME
4
5lit - LLVM Integrated Tester
6
7=head1 SYNOPSIS
8
9B<lit> [I<options>] [I<tests>]
10
11=head1 DESCRIPTION
12
13B<lit> is a portable tool for executing LLVM and Clang style test suites,
14summarizing their results, and providing indication of failures. B<lit> is
15designed to be a lightweight testing tool with as simple a user interface as
16possible.
17
18B<lit> should be run with one or more I<tests> to run specified on the command
19line. Tests can be either individual test files or directories to search for
20tests (see L<"TEST DISCOVERY">).
21
22Each specified test will be executed (potentially in parallel) and once all
23tests have been run B<lit> will print summary information on the number of tests
24which passed or failed (see L<"TEST STATUS RESULTS">). The B<lit> program will
25execute with a non-zero exit code if any tests fail.
26
27By default B<lit> will use a succinct progress display and will only print
28summary information for test failures. See L<"OUTPUT OPTIONS"> for options
29controlling the B<lit> progress display and output.
30
31B<lit> also includes a number of options for controlling how tests are exected
32(specific features may depend on the particular test format). See L<"EXECUTION
33OPTIONS"> for more information.
34
35Finally, B<lit> also supports additional options for only running a subset of
36the options specified on the command line, see L<"SELECTION OPTIONS"> for
37more information.
38
39=head1 GENERAL OPTIONS
40
41=over
42
43=item B<-h>, B<--help>
44
45Show the B<lit> help message.
46
47=item B<-j> I<N>, B<--threads>=I<N>
48
49Run I<N> tests in parallel. By default, this is automatically chose to match the
50number of detected available CPUs.
51
Daniel Dunbaredb89972009-10-25 03:30:55 +000052=item B<--config-prefix>=I<NAME>
53
54Search for I<NAME.cfg> and I<NAME.site.cfg> when searching for test suites,
55instead I<lit.cfg> and I<lit.site.cfg>.
56
Daniel Dunbarbe7ada72009-09-08 05:31:18 +000057=back
58
59=head1 OUTPUT OPTIONS
60
61=over
62
63=item B<-q>, B<--quiet>
64
65Suppress any output except for test failures.
66
67=item B<-s>, B<--succinct>
68
69Show less output, for example don't show information on tests that pass.
70
71=item B<-v>, B<--verbose>
72
73Show more information on test failures, for example the entire test output
74instead of just the test result.
75
76=item B<--no-progress-bar>
77
78Do not use curses based progress bar.
79
80=back
81
82=head1 EXECUTION OPTIONS
83
84=over
85
86=item B<--path>=I<PATH>
87
88Specify an addition I<PATH> to use when searching for executables in tests.
89
90=item B<--vg>
91
92Run individual tests under valgrind (using the memcheck tool). The
93I<--error-exitcode> argument for valgrind is used so that valgrind failures will
94cause the program to exit with a non-zero status.
95
96=item B<--vg-arg>=I<ARG>
97
98When I<--vg> is used, specify an additional argument to pass to valgrind itself.
99
100=item B<--time-tests>
101
102Track the wall time individual tests take to execute and includes the results in
103the summary output. This is useful for determining which tests in a test suite
104take the most time to execute. Note that this option is most useful with I<-j
1051>.
106
107=back
108
109=head1 SELECTION OPTIONS
110
111=over
112
113=item B<--max-tests>=I<N>
114
115Run at most I<N> tests and then terminate.
116
117=item B<--max-time>=I<N>
118
119Spend at most I<N> seconds (approximately) running tests and then terminate.
120
121=item B<--shuffle>
122
123Run the tests in a random order.
124
125=back
126
127=head1 ADDITIONAL OPTIONS
128
129=over
130
131=item B<--debug>
132
133Run B<lit> in debug mode, for debugging configuration issues and B<lit> itself.
134
135=item B<--show-suites>
136
137List the discovered test suites as part of the standard output.
138
139=item B<--no-tcl-as-sh>
140
141Run Tcl scripts internally (instead of converting to shell scripts).
142
143=back
144
145=head1 EXIT STATUS
146
147B<lit> will exit with an exit code of 1 if there are any FAIL or XPASS
148results. Otherwise, it will exit with the status 0. Other exit codes used for
149non-test related failures (for example a user error or an internal program
150error).
151
152=head1 TEST DISCOVERY
153
154The inputs passed to B<lit> can be either individual tests, or entire
155directories or hierarchies of tests to run. When B<lit> starts up, the first
156thing it does is convert the inputs into a complete list of tests to run as part
157of I<test discovery>.
158
159In the B<lit> model, every test must exist inside some I<test suite>. B<lit>
160resolves the inputs specified on the command line to test suites by searching
161upwards from the input path until it finds a I<lit.cfg> or I<lit.site.cfg>
162file. These files serve as both a marker of test suites and as configuration
163files which B<lit> loads in order to understand how to find and run the tests
164inside the test suite.
165
166Once B<lit> has mapped the inputs into test suites it traverses the list of
167inputs adding tests for individual files and recursively searching for tests in
168directories.
169
170This behavior makes it easy to specify a subset of tests to run, while still
171allowing the test suite configuration to control exactly how tests are
172interpreted. In addition, B<lit> always identifies tests by the test suite they
173are in, and their relative path inside the test suite. For appropriately
174configured projects, this allows B<lit> to provide convenient and flexible
175support for out-of-tree builds.
176
177=head1 TEST STATUS RESULTS
178
179Each test ultimately produces one of the following six results:
180
181=over
182
183=item B<PASS>
184
185The test succeeded.
186
187=item B<XFAIL>
188
189The test failed, but that is expected. This is used for test formats which allow
190specifying that a test does not currently work, but wish to leave it in the test
191suite.
192
193=item B<XPASS>
194
195The test succeeded, but it was expected to fail. This is used for tests which
196were specified as expected to fail, but are now succeeding (generally because
197the feautre they test was broken and has been fixed).
198
199=item B<FAIL>
200
201The test failed.
202
203=item B<UNRESOLVED>
204
205The test result could not be determined. For example, this occurs when the test
206could not be run, the test itself is invalid, or the test was interrupted.
207
208=item B<UNSUPPORTED>
209
210The test is not supported in this environment. This is used by test formats
211which can report unsupported tests.
212
213=back
214
215Depending on the test format tests may produce additional information about
216their status (generally only for failures). See the L<Output|"LIT OUTPUT">
217section for more information.
218
219=head1 SEE ALSO
220
221L<valgrind(1)>
222
223=head1 AUTHOR
224
225Written by Daniel Dunbar and maintained by the LLVM Team (L<http://llvm.org>).
226
227=cut