blob: d542402608d05c5b621d069123d44c924c818b8c [file] [log] [blame]
Sean Silvaac99eed2012-11-14 21:09:30 +00001=================================
2LLVM Testing Infrastructure Guide
3=================================
4
5Written by John T. Criswell, Daniel Dunbar, Reid Spencer, and Tanya
6Lattner
7
8.. contents::
9 :local:
10
Sean Silvad5f4b4c2012-11-14 23:11:10 +000011.. toctree::
12 :hidden:
13
14 TestSuiteMakefileGuide
15
Sean Silvaac99eed2012-11-14 21:09:30 +000016Overview
17========
18
19This document is the reference manual for the LLVM testing
20infrastructure. It documents the structure of the LLVM testing
21infrastructure, the tools needed to use it, and how to add and run
22tests.
23
24Requirements
25============
26
27In order to use the LLVM testing infrastructure, you will need all of
28the software required to build LLVM, as well as
29`Python <http://python.org>`_ 2.4 or later.
30
31LLVM testing infrastructure organization
32========================================
33
34The LLVM testing infrastructure contains two major categories of tests:
35regression tests and whole programs. The regression tests are contained
36inside the LLVM repository itself under ``llvm/test`` and are expected
37to always pass -- they should be run before every commit.
38
39The whole programs tests are referred to as the "LLVM test suite" (or
40"test-suite") and are in the ``test-suite`` module in subversion. For
41historical reasons, these tests are also referred to as the "nightly
42tests" in places, which is less ambiguous than "test-suite" and remains
43in use although we run them much more often than nightly.
44
45Regression tests
46----------------
47
48The regression tests are small pieces of code that test a specific
Eli Bendersky56537a52012-12-03 04:10:58 +000049feature of LLVM or trigger a specific bug in LLVM. The language they are
50written in depends on the part of LLVM being tested. These tests are driven by
51the :doc:`Lit <CommandGuide/lit>` testing tool (which is part of LLVM), and
52are located in the ``llvm/test`` directory.
Sean Silvaac99eed2012-11-14 21:09:30 +000053
54Typically when a bug is found in LLVM, a regression test containing just
55enough code to reproduce the problem should be written and placed
Eli Bendersky56537a52012-12-03 04:10:58 +000056somewhere underneath this directory. For example, it can be a small
57piece of LLVM IR distilled from an actual application or benchmark.
Sean Silvaac99eed2012-11-14 21:09:30 +000058
59``test-suite``
60--------------
61
62The test suite contains whole programs, which are pieces of code which
63can be compiled and linked into a stand-alone program that can be
64executed. These programs are generally written in high level languages
65such as C or C++.
66
67These programs are compiled using a user specified compiler and set of
68flags, and then executed to capture the program output and timing
69information. The output of these programs is compared to a reference
70output to ensure that the program is being compiled correctly.
71
72In addition to compiling and executing programs, whole program tests
73serve as a way of benchmarking LLVM performance, both in terms of the
74efficiency of the programs generated as well as the speed with which
75LLVM compiles, optimizes, and generates code.
76
77The test-suite is located in the ``test-suite`` Subversion module.
78
79Debugging Information tests
80---------------------------
81
82The test suite contains tests to check quality of debugging information.
83The test are written in C based languages or in LLVM assembly language.
84
85These tests are compiled and run under a debugger. The debugger output
86is checked to validate of debugging information. See README.txt in the
87test suite for more information . This test suite is located in the
88``debuginfo-tests`` Subversion module.
89
90Quick start
91===========
92
93The tests are located in two separate Subversion modules. The
94regressions tests are in the main "llvm" module under the directory
Eli Bendersky56537a52012-12-03 04:10:58 +000095``llvm/test`` (so you get these tests for free with the main LLVM tree).
96Use ``make check-all`` to run the regression tests after building LLVM.
Sean Silvaac99eed2012-11-14 21:09:30 +000097
Sean Silvad5f4b4c2012-11-14 23:11:10 +000098The more comprehensive test suite that includes whole programs in C and C++
99is in the ``test-suite`` module. See :ref:`test-suite Quickstart
100<test-suite-quickstart>` for more information on running these tests.
Sean Silvaac99eed2012-11-14 21:09:30 +0000101
102Regression tests
103----------------
104
Eli Bendersky56537a52012-12-03 04:10:58 +0000105To run all of the LLVM regression tests, use the master Makefile in the
106``llvm/test`` directory. LLVM Makefiles require GNU Make (read the :doc:`LLVM
107Makefile Guide <MakefileGuide>` for more details):
Sean Silvaac99eed2012-11-14 21:09:30 +0000108
109.. code-block:: bash
110
Eli Bendersky56537a52012-12-03 04:10:58 +0000111 % make -C llvm/test
Sean Silvaac99eed2012-11-14 21:09:30 +0000112
Eli Bendersky56537a52012-12-03 04:10:58 +0000113or:
Sean Silvaac99eed2012-11-14 21:09:30 +0000114
115.. code-block:: bash
116
Eli Bendersky56537a52012-12-03 04:10:58 +0000117 % make check
Sean Silvaac99eed2012-11-14 21:09:30 +0000118
119If you have `Clang <http://clang.llvm.org/>`_ checked out and built, you
120can run the LLVM and Clang tests simultaneously using:
121
Sean Silvaac99eed2012-11-14 21:09:30 +0000122.. code-block:: bash
123
Eli Bendersky56537a52012-12-03 04:10:58 +0000124 % make check-all
Sean Silvaac99eed2012-11-14 21:09:30 +0000125
126To run the tests with Valgrind (Memcheck by default), just append
127``VG=1`` to the commands above, e.g.:
128
129.. code-block:: bash
130
Eli Bendersky56537a52012-12-03 04:10:58 +0000131 % make check VG=1
Sean Silvaac99eed2012-11-14 21:09:30 +0000132
Eli Bendersky56537a52012-12-03 04:10:58 +0000133To run individual tests or subsets of tests, you can use the ``llvm-lit``
Sean Silvaac99eed2012-11-14 21:09:30 +0000134script which is built as part of LLVM. For example, to run the
Eli Bendersky56537a52012-12-03 04:10:58 +0000135``Integer/BitPacked.ll`` test by itself you can run:
Sean Silvaac99eed2012-11-14 21:09:30 +0000136
137.. code-block:: bash
138
139 % llvm-lit ~/llvm/test/Integer/BitPacked.ll
140
141or to run all of the ARM CodeGen tests:
142
143.. code-block:: bash
144
145 % llvm-lit ~/llvm/test/CodeGen/ARM
146
Eli Bendersky56537a52012-12-03 04:10:58 +0000147For more information on using the :program:`lit` tool, see ``llvm-lit --help``
148or the :doc:`lit man page <CommandGuide/lit>`.
Sean Silvaac99eed2012-11-14 21:09:30 +0000149
150Debugging Information tests
151---------------------------
152
153To run debugging information tests simply checkout the tests inside
154clang/test directory.
155
156.. code-block:: bash
157
158 % cd clang/test
159 % svn co http://llvm.org/svn/llvm-project/debuginfo-tests/trunk debuginfo-tests
160
161These tests are already set up to run as part of clang regression tests.
162
163Regression test structure
164=========================
165
Eli Bendersky56537a52012-12-03 04:10:58 +0000166The LLVM regression tests are driven by :program:`lit` and are located in the
Sean Silvaac99eed2012-11-14 21:09:30 +0000167``llvm/test`` directory.
168
169This directory contains a large array of small tests that exercise
170various features of LLVM and to ensure that regressions do not occur.
171The directory is broken into several sub-directories, each focused on a
172particular area of LLVM. A few of the important ones are:
173
174- ``Analysis``: checks Analysis passes.
175- ``Archive``: checks the Archive library.
176- ``Assembler``: checks Assembly reader/writer functionality.
177- ``Bitcode``: checks Bitcode reader/writer functionality.
178- ``CodeGen``: checks code generation and each target.
179- ``Features``: checks various features of the LLVM language.
180- ``Linker``: tests bitcode linking.
181- ``Transforms``: tests each of the scalar, IPO, and utility transforms
182 to ensure they make the right transformations.
183- ``Verifier``: tests the IR verifier.
184
185Writing new regression tests
186----------------------------
187
188The regression test structure is very simple, but does require some
189information to be set. This information is gathered via ``configure``
190and is written to a file, ``lit.site.cfg`` in ``llvm/test``. The
191``llvm/test`` Makefile does this work for you.
192
193In order for the regression tests to work, each directory of tests must
194have a ``lit.local.cfg`` file. Lit looks for this file to determine how
195to run the tests. This file is just Python code and thus is very
196flexible, but we've standardized it for the LLVM regression tests. If
197you're adding a directory of tests, just copy ``lit.local.cfg`` from
198another directory to get running. The standard ``lit.local.cfg`` simply
199specifies which files to look in for tests. Any directory that contains
Dmitri Gribenko44da2342012-11-18 10:35:18 +0000200only directories does not need the ``lit.local.cfg`` file. Read the :doc:`Lit
201documentation <CommandGuide/lit>` for more information.
Sean Silvaac99eed2012-11-14 21:09:30 +0000202
203The ``llvm-runtests`` function looks at each file that is passed to it
204and gathers any lines together that match "RUN:". These are the "RUN"
205lines that specify how the test is to be run. So, each test script must
206contain RUN lines if it is to do anything. If there are no RUN lines,
207the ``llvm-runtests`` function will issue an error and the test will
208fail.
209
210RUN lines are specified in the comments of the test program using the
211keyword ``RUN`` followed by a colon, and lastly the command (pipeline)
212to execute. Together, these lines form the "script" that
213``llvm-runtests`` executes to run the test case. The syntax of the RUN
214lines is similar to a shell's syntax for pipelines including I/O
215redirection and variable substitution. However, even though these lines
216may *look* like a shell script, they are not. RUN lines are interpreted
217directly by the Tcl ``exec`` command. They are never executed by a
218shell. Consequently the syntax differs from normal shell script syntax
219in a few ways. You can specify as many RUN lines as needed.
220
221lit performs substitution on each RUN line to replace LLVM tool names
222with the full paths to the executable built for each tool (in
223$(LLVM\_OBJ\_ROOT)/$(BuildMode)/bin). This ensures that lit does not
224invoke any stray LLVM tools in the user's path during testing.
225
226Each RUN line is executed on its own, distinct from other lines unless
227its last character is ``\``. This continuation character causes the RUN
228line to be concatenated with the next one. In this way you can build up
229long pipelines of commands without making huge line lengths. The lines
230ending in ``\`` are concatenated until a RUN line that doesn't end in
231``\`` is found. This concatenated set of RUN lines then constitutes one
232execution. Tcl will substitute variables and arrange for the pipeline to
233be executed. If any process in the pipeline fails, the entire line (and
234test case) fails too.
235
236Below is an example of legal RUN lines in a ``.ll`` file:
237
238.. code-block:: llvm
239
240 ; RUN: llvm-as < %s | llvm-dis > %t1
241 ; RUN: llvm-dis < %s.bc-13 > %t2
242 ; RUN: diff %t1 %t2
243
244As with a Unix shell, the RUN: lines permit pipelines and I/O
245redirection to be used. However, the usage is slightly different than
246for Bash. To check what's legal, see the documentation for the `Tcl
247exec <http://www.tcl.tk/man/tcl8.5/TclCmd/exec.htm#M2>`_ command and the
248`tutorial <http://www.tcl.tk/man/tcl8.5/tutorial/Tcl26.html>`_. The
249major differences are:
250
251- You can't do ``2>&1``. That will cause Tcl to write to a file named
252 ``&1``. Usually this is done to get stderr to go through a pipe. You
253 can do that in tcl with ``|&`` so replace this idiom:
254 ``... 2>&1 | grep`` with ``... |& grep``
255- You can only redirect to a file, not to another descriptor and not
256 from a here document.
257- tcl supports redirecting to open files with the @ syntax but you
258 shouldn't use that here.
259
260There are some quoting rules that you must pay attention to when writing
261your RUN lines. In general nothing needs to be quoted. Tcl won't strip
262off any quote characters so they will get passed to the invoked program.
263For example:
264
265.. code-block:: bash
266
267 ... | grep 'find this string'
268
269This will fail because the ' characters are passed to grep. This would
270instruction grep to look for ``'find`` in the files ``this`` and
271``string'``. To avoid this use curly braces to tell Tcl that it should
272treat everything enclosed as one value. So our example would become:
273
274.. code-block:: bash
275
276 ... | grep {find this string}
277
278Additionally, the characters ``[`` and ``]`` are treated specially by
279Tcl. They tell Tcl to interpret the content as a command to execute.
280Since these characters are often used in regular expressions this can
281have disastrous results and cause the entire test run in a directory to
282fail. For example, a common idiom is to look for some basicblock number:
283
284.. code-block:: bash
285
286 ... | grep bb[2-8]
287
288This, however, will cause Tcl to fail because its going to try to
289execute a program named "2-8". Instead, what you want is this:
290
291.. code-block:: bash
292
293 ... | grep {bb\[2-8\]}
294
295Finally, if you need to pass the ``\`` character down to a program, then
296it must be doubled. This is another Tcl special character. So, suppose
297you had:
298
299.. code-block:: bash
300
301 ... | grep 'i32\*'
302
303This will fail to match what you want (a pointer to i32). First, the
304``'`` do not get stripped off. Second, the ``\`` gets stripped off by
305Tcl so what grep sees is: ``'i32*'``. That's not likely to match
306anything. To resolve this you must use ``\\`` and the ``{}``, like this:
307
308.. code-block:: bash
309
310 ... | grep {i32\\*}
311
312If your system includes GNU ``grep``, make sure that ``GREP_OPTIONS`` is
313not set in your environment. Otherwise, you may get invalid results
314(both false positives and false negatives).
315
316The FileCheck utility
317---------------------
318
319A powerful feature of the RUN: lines is that it allows any arbitrary
320commands to be executed as part of the test harness. While standard
321(portable) unix tools like 'grep' work fine on run lines, as you see
322above, there are a lot of caveats due to interaction with Tcl syntax,
323and we want to make sure the run lines are portable to a wide range of
324systems. Another major problem is that grep is not very good at checking
325to verify that the output of a tools contains a series of different
326output in a specific order. The FileCheck tool was designed to help with
327these problems.
328
Dmitri Gribenko92d499e2012-11-18 18:28:14 +0000329FileCheck is designed to read a file to check from standard input, and the set
330of things to verify from a file specified as a command line argument.
331FileCheck is described in :doc:`the FileCheck man page
332<CommandGuide/FileCheck>`.
Sean Silvaac99eed2012-11-14 21:09:30 +0000333
334Variables and substitutions
335---------------------------
336
337With a RUN line there are a number of substitutions that are permitted.
338In general, any Tcl variable that is available in the ``substitute``
339function (in ``test/lib/llvm.exp``) can be substituted into a RUN line.
340To make a substitution just write the variable's name preceded by a $.
341Additionally, for compatibility reasons with previous versions of the
342test library, certain names can be accessed with an alternate syntax: a
343% prefix. These alternates are deprecated and may go away in a future
344version.
345
346Here are the available variable names. The alternate syntax is listed in
347parentheses.
348
349``$test`` (``%s``)
350 The full path to the test case's source. This is suitable for passing on
351 the command line as the input to an llvm tool.
352
353``%(line)``, ``%(line+<number>)``, ``%(line-<number>)``
354 The number of the line where this variable is used, with an optional
355 integer offset. This can be used in tests with multiple RUN: lines,
356 which reference test file's line numbers.
357
358``$srcdir``
359 The source directory from where the "``make check``" was run.
360
361``objdir``
362 The object directory that corresponds to the ``$srcdir``.
363
364``subdir``
365 A partial path from the ``test`` directory that contains the
366 sub-directory that contains the test source being executed.
367
368``srcroot``
369 The root directory of the LLVM src tree.
370
371``objroot``
372 The root directory of the LLVM object tree. This could be the same as
373 the srcroot.
374
375``path``
376 The path to the directory that contains the test case source. This is
377 for locating any supporting files that are not generated by the test,
378 but used by the test.
379
380``tmp``
381 The path to a temporary file name that could be used for this test case.
382 The file name won't conflict with other test cases. You can append to it
383 if you need multiple temporaries. This is useful as the destination of
384 some redirected output.
385
386``target_triplet`` (``%target_triplet``)
387 The target triplet that corresponds to the current host machine (the one
388 running the test cases). This should probably be called "host".
389
390``link`` (``%link``)
391 This full link command used to link LLVM executables. This has all the
392 configured -I, -L and -l options.
393
394``shlibext`` (``%shlibext``)
395 The suffix for the host platforms share library (dll) files. This
396 includes the period as the first character.
397
398To add more variables, two things need to be changed. First, add a line
399in the ``test/Makefile`` that creates the ``site.exp`` file. This will
400"set" the variable as a global in the site.exp file. Second, in the
401``test/lib/llvm.exp`` file, in the substitute proc, add the variable
402name to the list of "global" declarations at the beginning of the proc.
403That's it, the variable can then be used in test scripts.
404
405Other Features
406--------------
407
408To make RUN line writing easier, there are several shell scripts located
409in the ``llvm/test/Scripts`` directory. This directory is in the PATH
410when running tests, so you can just call these scripts using their name.
411For example:
412
413``ignore``
414 This script runs its arguments and then always returns 0. This is useful
415 in cases where the test needs to cause a tool to generate an error (e.g.
416 to check the error output). However, any program in a pipeline that
417 returns a non-zero result will cause the test to fail. This script
418 overcomes that issue and nicely documents that the test case is
419 purposefully ignoring the result code of the tool
420``not``
421 This script runs its arguments and then inverts the result code from it.
422 Zero result codes become 1. Non-zero result codes become 0. This is
423 useful to invert the result of a grep. For example "not grep X" means
424 succeed only if you don't find X in the input.
425
426Sometimes it is necessary to mark a test case as "expected fail" or
427XFAIL. You can easily mark a test as XFAIL just by including ``XFAIL:``
428on a line near the top of the file. This signals that the test case
429should succeed if the test fails. Such test cases are counted separately
430by the testing tool. To specify an expected fail, use the XFAIL keyword
431in the comments of the test program followed by a colon and one or more
432failure patterns. Each failure pattern can be either ``*`` (to specify
433fail everywhere), or a part of a target triple (indicating the test
434should fail on that platform), or the name of a configurable feature
435(for example, ``loadable_module``). If there is a match, the test is
436expected to fail. If not, the test is expected to succeed. To XFAIL
437everywhere just specify ``XFAIL: *``. Here is an example of an ``XFAIL``
438line:
439
440.. code-block:: llvm
441
442 ; XFAIL: darwin,sun
443
444To make the output more useful, the ``llvm_runtest`` function wil scan
445the lines of the test case for ones that contain a pattern that matches
446``PR[0-9]+``. This is the syntax for specifying a PR (Problem Report) number
447that is related to the test case. The number after "PR" specifies the
448LLVM bugzilla number. When a PR number is specified, it will be used in
449the pass/fail reporting. This is useful to quickly get some context when
450a test fails.
451
452Finally, any line that contains "END." will cause the special
453interpretation of lines to terminate. This is generally done right after
454the last RUN: line. This has two side effects:
455
456(a) it prevents special interpretation of lines that are part of the test
457 program, not the instructions to the test case, and
458
459(b) it speeds things up for really big test cases by avoiding
460 interpretation of the remainder of the file.
461
462``test-suite`` Overview
463=======================
464
465The ``test-suite`` module contains a number of programs that can be
466compiled and executed. The ``test-suite`` includes reference outputs for
467all of the programs, so that the output of the executed program can be
468checked for correctness.
469
470``test-suite`` tests are divided into three types of tests: MultiSource,
471SingleSource, and External.
472
473- ``test-suite/SingleSource``
474
475 The SingleSource directory contains test programs that are only a
476 single source file in size. These are usually small benchmark
477 programs or small programs that calculate a particular value. Several
478 such programs are grouped together in each directory.
479
480- ``test-suite/MultiSource``
481
482 The MultiSource directory contains subdirectories which contain
483 entire programs with multiple source files. Large benchmarks and
484 whole applications go here.
485
486- ``test-suite/External``
487
488 The External directory contains Makefiles for building code that is
489 external to (i.e., not distributed with) LLVM. The most prominent
490 members of this directory are the SPEC 95 and SPEC 2000 benchmark
491 suites. The ``External`` directory does not contain these actual
492 tests, but only the Makefiles that know how to properly compile these
493 programs from somewhere else. When using ``LNT``, use the
494 ``--test-externals`` option to include these tests in the results.
495
Sean Silvad5f4b4c2012-11-14 23:11:10 +0000496.. _test-suite-quickstart:
497
Sean Silvaac99eed2012-11-14 21:09:30 +0000498``test-suite`` Quickstart
499-------------------------
500
501The modern way of running the ``test-suite`` is focused on testing and
502benchmarking complete compilers using the
503`LNT <http://llvm.org/docs/lnt>`_ testing infrastructure.
504
505For more information on using LNT to execute the ``test-suite``, please
506see the `LNT Quickstart <http://llvm.org/docs/lnt/quickstart.html>`_
507documentation.
508
509``test-suite`` Makefiles
510------------------------
511
512Historically, the ``test-suite`` was executed using a complicated setup
513of Makefiles. The LNT based approach above is recommended for most
514users, but there are some testing scenarios which are not supported by
515the LNT approach. In addition, LNT currently uses the Makefile setup
516under the covers and so developers who are interested in how LNT works
517under the hood may want to understand the Makefile based setup.
518
519For more information on the ``test-suite`` Makefile setup, please see
Sean Silvad5f4b4c2012-11-14 23:11:10 +0000520the :doc:`Test Suite Makefile Guide <TestSuiteMakefileGuide>`.