blob: 7ca49ceac0335ab7a68299838ec8a1b0ad4a3ce1 [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
49feature of LLVM or trigger a specific bug in LLVM. They are usually
50written in LLVM assembly language, but can be written in other languages
51if the test targets a particular language front end (and the appropriate
52``--with-llvmgcc`` options were used at ``configure`` time of the
53``llvm`` module). These tests are driven by the 'lit' testing tool,
54which is part of LLVM.
55
56These code fragments are not complete programs. The code generated from
57them is never executed to determine correct behavior.
58
59These code fragment tests are located in the ``llvm/test`` directory.
60
61Typically when a bug is found in LLVM, a regression test containing just
62enough code to reproduce the problem should be written and placed
63somewhere underneath this directory. In most cases, this will be a small
64piece of LLVM assembly language code, often distilled from an actual
65application or benchmark.
66
67``test-suite``
68--------------
69
70The test suite contains whole programs, which are pieces of code which
71can be compiled and linked into a stand-alone program that can be
72executed. These programs are generally written in high level languages
73such as C or C++.
74
75These programs are compiled using a user specified compiler and set of
76flags, and then executed to capture the program output and timing
77information. The output of these programs is compared to a reference
78output to ensure that the program is being compiled correctly.
79
80In addition to compiling and executing programs, whole program tests
81serve as a way of benchmarking LLVM performance, both in terms of the
82efficiency of the programs generated as well as the speed with which
83LLVM compiles, optimizes, and generates code.
84
85The test-suite is located in the ``test-suite`` Subversion module.
86
87Debugging Information tests
88---------------------------
89
90The test suite contains tests to check quality of debugging information.
91The test are written in C based languages or in LLVM assembly language.
92
93These tests are compiled and run under a debugger. The debugger output
94is checked to validate of debugging information. See README.txt in the
95test suite for more information . This test suite is located in the
96``debuginfo-tests`` Subversion module.
97
98Quick start
99===========
100
101The tests are located in two separate Subversion modules. The
102regressions tests are in the main "llvm" module under the directory
103``llvm/test`` (so you get these tests for free with the main llvm tree).
104Use "make check-all" to run the regression tests after building LLVM.
105
Sean Silvad5f4b4c2012-11-14 23:11:10 +0000106The more comprehensive test suite that includes whole programs in C and C++
107is in the ``test-suite`` module. See :ref:`test-suite Quickstart
108<test-suite-quickstart>` for more information on running these tests.
Sean Silvaac99eed2012-11-14 21:09:30 +0000109
110Regression tests
111----------------
112
113To run all of the LLVM regression tests, use master Makefile in the
114``llvm/test`` directory:
115
116.. code-block:: bash
117
118 % gmake -C llvm/test
119
120or
121
122.. code-block:: bash
123
124 % gmake check
125
126If you have `Clang <http://clang.llvm.org/>`_ checked out and built, you
127can run the LLVM and Clang tests simultaneously using:
128
129or
130
131.. code-block:: bash
132
133 % gmake check-all
134
135To run the tests with Valgrind (Memcheck by default), just append
136``VG=1`` to the commands above, e.g.:
137
138.. code-block:: bash
139
140 % gmake check VG=1
141
142To run individual tests or subsets of tests, you can use the 'llvm-lit'
143script which is built as part of LLVM. For example, to run the
144'Integer/BitPacked.ll' test by itself you can run:
145
146.. code-block:: bash
147
148 % llvm-lit ~/llvm/test/Integer/BitPacked.ll
149
150or to run all of the ARM CodeGen tests:
151
152.. code-block:: bash
153
154 % llvm-lit ~/llvm/test/CodeGen/ARM
155
156For more information on using the 'lit' tool, see 'llvm-lit --help' or
157the 'lit' man page.
158
159Debugging Information tests
160---------------------------
161
162To run debugging information tests simply checkout the tests inside
163clang/test directory.
164
165.. code-block:: bash
166
167 % cd clang/test
168 % svn co http://llvm.org/svn/llvm-project/debuginfo-tests/trunk debuginfo-tests
169
170These tests are already set up to run as part of clang regression tests.
171
172Regression test structure
173=========================
174
175The LLVM regression tests are driven by 'lit' and are located in the
176``llvm/test`` directory.
177
178This directory contains a large array of small tests that exercise
179various features of LLVM and to ensure that regressions do not occur.
180The directory is broken into several sub-directories, each focused on a
181particular area of LLVM. A few of the important ones are:
182
183- ``Analysis``: checks Analysis passes.
184- ``Archive``: checks the Archive library.
185- ``Assembler``: checks Assembly reader/writer functionality.
186- ``Bitcode``: checks Bitcode reader/writer functionality.
187- ``CodeGen``: checks code generation and each target.
188- ``Features``: checks various features of the LLVM language.
189- ``Linker``: tests bitcode linking.
190- ``Transforms``: tests each of the scalar, IPO, and utility transforms
191 to ensure they make the right transformations.
192- ``Verifier``: tests the IR verifier.
193
194Writing new regression tests
195----------------------------
196
197The regression test structure is very simple, but does require some
198information to be set. This information is gathered via ``configure``
199and is written to a file, ``lit.site.cfg`` in ``llvm/test``. The
200``llvm/test`` Makefile does this work for you.
201
202In order for the regression tests to work, each directory of tests must
203have a ``lit.local.cfg`` file. Lit looks for this file to determine how
204to run the tests. This file is just Python code and thus is very
205flexible, but we've standardized it for the LLVM regression tests. If
206you're adding a directory of tests, just copy ``lit.local.cfg`` from
207another directory to get running. The standard ``lit.local.cfg`` simply
208specifies which files to look in for tests. Any directory that contains
209only directories does not need the ``lit.local.cfg`` file. Read the `Lit
210documentation <http://llvm.org/cmds/lit.html>`_ for more information.
211
212The ``llvm-runtests`` function looks at each file that is passed to it
213and gathers any lines together that match "RUN:". These are the "RUN"
214lines that specify how the test is to be run. So, each test script must
215contain RUN lines if it is to do anything. If there are no RUN lines,
216the ``llvm-runtests`` function will issue an error and the test will
217fail.
218
219RUN lines are specified in the comments of the test program using the
220keyword ``RUN`` followed by a colon, and lastly the command (pipeline)
221to execute. Together, these lines form the "script" that
222``llvm-runtests`` executes to run the test case. The syntax of the RUN
223lines is similar to a shell's syntax for pipelines including I/O
224redirection and variable substitution. However, even though these lines
225may *look* like a shell script, they are not. RUN lines are interpreted
226directly by the Tcl ``exec`` command. They are never executed by a
227shell. Consequently the syntax differs from normal shell script syntax
228in a few ways. You can specify as many RUN lines as needed.
229
230lit performs substitution on each RUN line to replace LLVM tool names
231with the full paths to the executable built for each tool (in
232$(LLVM\_OBJ\_ROOT)/$(BuildMode)/bin). This ensures that lit does not
233invoke any stray LLVM tools in the user's path during testing.
234
235Each RUN line is executed on its own, distinct from other lines unless
236its last character is ``\``. This continuation character causes the RUN
237line to be concatenated with the next one. In this way you can build up
238long pipelines of commands without making huge line lengths. The lines
239ending in ``\`` are concatenated until a RUN line that doesn't end in
240``\`` is found. This concatenated set of RUN lines then constitutes one
241execution. Tcl will substitute variables and arrange for the pipeline to
242be executed. If any process in the pipeline fails, the entire line (and
243test case) fails too.
244
245Below is an example of legal RUN lines in a ``.ll`` file:
246
247.. code-block:: llvm
248
249 ; RUN: llvm-as < %s | llvm-dis > %t1
250 ; RUN: llvm-dis < %s.bc-13 > %t2
251 ; RUN: diff %t1 %t2
252
253As with a Unix shell, the RUN: lines permit pipelines and I/O
254redirection to be used. However, the usage is slightly different than
255for Bash. To check what's legal, see the documentation for the `Tcl
256exec <http://www.tcl.tk/man/tcl8.5/TclCmd/exec.htm#M2>`_ command and the
257`tutorial <http://www.tcl.tk/man/tcl8.5/tutorial/Tcl26.html>`_. The
258major differences are:
259
260- You can't do ``2>&1``. That will cause Tcl to write to a file named
261 ``&1``. Usually this is done to get stderr to go through a pipe. You
262 can do that in tcl with ``|&`` so replace this idiom:
263 ``... 2>&1 | grep`` with ``... |& grep``
264- You can only redirect to a file, not to another descriptor and not
265 from a here document.
266- tcl supports redirecting to open files with the @ syntax but you
267 shouldn't use that here.
268
269There are some quoting rules that you must pay attention to when writing
270your RUN lines. In general nothing needs to be quoted. Tcl won't strip
271off any quote characters so they will get passed to the invoked program.
272For example:
273
274.. code-block:: bash
275
276 ... | grep 'find this string'
277
278This will fail because the ' characters are passed to grep. This would
279instruction grep to look for ``'find`` in the files ``this`` and
280``string'``. To avoid this use curly braces to tell Tcl that it should
281treat everything enclosed as one value. So our example would become:
282
283.. code-block:: bash
284
285 ... | grep {find this string}
286
287Additionally, the characters ``[`` and ``]`` are treated specially by
288Tcl. They tell Tcl to interpret the content as a command to execute.
289Since these characters are often used in regular expressions this can
290have disastrous results and cause the entire test run in a directory to
291fail. For example, a common idiom is to look for some basicblock number:
292
293.. code-block:: bash
294
295 ... | grep bb[2-8]
296
297This, however, will cause Tcl to fail because its going to try to
298execute a program named "2-8". Instead, what you want is this:
299
300.. code-block:: bash
301
302 ... | grep {bb\[2-8\]}
303
304Finally, if you need to pass the ``\`` character down to a program, then
305it must be doubled. This is another Tcl special character. So, suppose
306you had:
307
308.. code-block:: bash
309
310 ... | grep 'i32\*'
311
312This will fail to match what you want (a pointer to i32). First, the
313``'`` do not get stripped off. Second, the ``\`` gets stripped off by
314Tcl so what grep sees is: ``'i32*'``. That's not likely to match
315anything. To resolve this you must use ``\\`` and the ``{}``, like this:
316
317.. code-block:: bash
318
319 ... | grep {i32\\*}
320
321If your system includes GNU ``grep``, make sure that ``GREP_OPTIONS`` is
322not set in your environment. Otherwise, you may get invalid results
323(both false positives and false negatives).
324
325The FileCheck utility
326---------------------
327
328A powerful feature of the RUN: lines is that it allows any arbitrary
329commands to be executed as part of the test harness. While standard
330(portable) unix tools like 'grep' work fine on run lines, as you see
331above, there are a lot of caveats due to interaction with Tcl syntax,
332and we want to make sure the run lines are portable to a wide range of
333systems. Another major problem is that grep is not very good at checking
334to verify that the output of a tools contains a series of different
335output in a specific order. The FileCheck tool was designed to help with
336these problems.
337
338FileCheck (whose basic command line arguments are described in `the
339FileCheck man page <http://llvm.org/cmds/FileCheck.html>`_ is designed
340to read a file to check from standard input, and the set of things to
341verify from a file specified as a command line argument. A simple
342example of using FileCheck from a RUN line looks like this:
343
344.. code-block:: llvm
345
346 ; RUN: llvm-as < %s | llc -march=x86-64 | FileCheck %s
347
348This syntax says to pipe the current file ("%s") into llvm-as, pipe that
349into llc, then pipe the output of llc into FileCheck. This means that
350FileCheck will be verifying its standard input (the llc output) against
351the filename argument specified (the original .ll file specified by
352"%s"). To see how this works, let's look at the rest of the .ll file
353(after the RUN line):
354
355.. code-block:: llvm
356
357 define void @sub1(i32* %p, i32 %v) {
358 entry:
359 ; CHECK: sub1:
360 ; CHECK: subl
361 %0 = tail call i32 @llvm.atomic.load.sub.i32.p0i32(i32* %p, i32 %v)
362 ret void
363 }
364
365 define void @inc4(i64* %p) {
366 entry:
367 ; CHECK: inc4:
368 ; CHECK: incq
369 %0 = tail call i64 @llvm.atomic.load.add.i64.p0i64(i64* %p, i64 1)
370 ret void
371 }
372
373Here you can see some "CHECK:" lines specified in comments. Now you can
374see how the file is piped into llvm-as, then llc, and the machine code
375output is what we are verifying. FileCheck checks the machine code
376output to verify that it matches what the "CHECK:" lines specify.
377
378The syntax of the CHECK: lines is very simple: they are fixed strings
379that must occur in order. FileCheck defaults to ignoring horizontal
380whitespace differences (e.g. a space is allowed to match a tab) but
381otherwise, the contents of the CHECK: line is required to match some
382thing in the test file exactly.
383
384One nice thing about FileCheck (compared to grep) is that it allows
385merging test cases together into logical groups. For example, because
386the test above is checking for the "sub1:" and "inc4:" labels, it will
387not match unless there is a "subl" in between those labels. If it
388existed somewhere else in the file, that would not count: "grep subl"
389matches if subl exists anywhere in the file.
390
391The FileCheck -check-prefix option
392^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
393
394The FileCheck -check-prefix option allows multiple test configurations
395to be driven from one .ll file. This is useful in many circumstances,
396for example, testing different architectural variants with llc. Here's a
397simple example:
398
399.. code-block:: llvm
400
401 ; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin9 -mattr=sse41 \
402 ; RUN: | FileCheck %s -check-prefix=X32
403 ; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 -mattr=sse41 \
404 ; RUN: | FileCheck %s -check-prefix=X64
405
406 define <4 x i32> @pinsrd_1(i32 %s, <4 x i32> %tmp) nounwind {
407 %tmp1 = insertelement <4 x i32> %tmp, i32 %s, i32 1
408 ret <4 x i32> %tmp1
409 ; X32: pinsrd_1:
410 ; X32: pinsrd $1, 4(%esp), %xmm0
411
412 ; X64: pinsrd_1:
413 ; X64: pinsrd $1, %edi, %xmm0
414 }
415
416In this case, we're testing that we get the expected code generation
417with both 32-bit and 64-bit code generation.
418
419The "CHECK-NEXT:" directive
420^^^^^^^^^^^^^^^^^^^^^^^^^^^
421
422Sometimes you want to match lines and would like to verify that matches
423happen on exactly consecutive lines with no other lines in between them.
424In this case, you can use CHECK: and CHECK-NEXT: directives to specify
425this. If you specified a custom check prefix, just use "<PREFIX>-NEXT:".
426For example, something like this works as you'd expect:
427
428.. code-block:: llvm
429
430 define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) {
431 %tmp3 = load <2 x double>* %A, align 16
432 %tmp7 = insertelement <2 x double> undef, double %B, i32 0
433 %tmp9 = shufflevector <2 x double> %tmp3,
434 <2 x double> %tmp7,
435 <2 x i32> < i32 0, i32 2 >
436 store <2 x double> %tmp9, <2 x double>* %r, align 16
437 ret void
438
439 ; CHECK: t2:
440 ; CHECK: movl 8(%esp), %eax
441 ; CHECK-NEXT: movapd (%eax), %xmm0
442 ; CHECK-NEXT: movhpd 12(%esp), %xmm0
443 ; CHECK-NEXT: movl 4(%esp), %eax
444 ; CHECK-NEXT: movapd %xmm0, (%eax)
445 ; CHECK-NEXT: ret
446 }
447
448CHECK-NEXT: directives reject the input unless there is exactly one
449newline between it an the previous directive. A CHECK-NEXT cannot be the
450first directive in a file.
451
452The "CHECK-NOT:" directive
453^^^^^^^^^^^^^^^^^^^^^^^^^^
454
455The CHECK-NOT: directive is used to verify that a string doesn't occur
456between two matches (or the first match and the beginning of the file).
457For example, to verify that a load is removed by a transformation, a
458test like this can be used:
459
460.. code-block:: llvm
461
462 define i8 @coerce_offset0(i32 %V, i32* %P) {
463 store i32 %V, i32* %P
464
465 %P2 = bitcast i32* %P to i8*
466 %P3 = getelementptr i8* %P2, i32 2
467
468 %A = load i8* %P3
469 ret i8 %A
470 ; CHECK: @coerce_offset0
471 ; CHECK-NOT: load
472 ; CHECK: ret i8
473 }
474
475FileCheck Pattern Matching Syntax
476^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
477
478The CHECK: and CHECK-NOT: directives both take a pattern to match. For
479most uses of FileCheck, fixed string matching is perfectly sufficient.
480For some things, a more flexible form of matching is desired. To support
481this, FileCheck allows you to specify regular expressions in matching
482strings, surrounded by double braces: **{{yourregex}}**. Because we want
483to use fixed string matching for a majority of what we do, FileCheck has
484been designed to support mixing and matching fixed string matching with
485regular expressions. This allows you to write things like this:
486
487.. code-block:: llvm
488
489 ; CHECK: movhpd {{[0-9]+}}(%esp), {{%xmm[0-7]}}
490
491In this case, any offset from the ESP register will be allowed, and any
492xmm register will be allowed.
493
494Because regular expressions are enclosed with double braces, they are
495visually distinct, and you don't need to use escape characters within
496the double braces like you would in C. In the rare case that you want to
497match double braces explicitly from the input, you can use something
498ugly like **{{[{][{]}}** as your pattern.
499
500FileCheck Variables
501^^^^^^^^^^^^^^^^^^^
502
503It is often useful to match a pattern and then verify that it occurs
504again later in the file. For codegen tests, this can be useful to allow
505any register, but verify that that register is used consistently later.
506To do this, FileCheck allows named variables to be defined and
507substituted into patterns. Here is a simple example:
508
509.. code-block:: llvm
510
511 ; CHECK: test5:
512 ; CHECK: notw [[REGISTER:%[a-z]+]]
513 ; CHECK: andw {{.*}}[[REGISTER]]
514
515The first check line matches a regex (``%[a-z]+``) and captures it into
516the variables "REGISTER". The second line verifies that whatever is in
517REGISTER occurs later in the file after an "andw". FileCheck variable
518references are always contained in ``[[ ]]`` pairs, are named, and their
519names can be formed with the regex "``[a-zA-Z][a-zA-Z0-9]*``". If a
520colon follows the name, then it is a definition of the variable, if not,
521it is a use.
522
523FileCheck variables can be defined multiple times, and uses always get
524the latest value. Note that variables are all read at the start of a
525"CHECK" line and are all defined at the end. This means that if you have
526something like "``CHECK: [[XYZ:.*]]x[[XYZ]]``" that the check line will
527read the previous value of the XYZ variable and define a new one after
528the match is performed. If you need to do something like this you can
529probably take advantage of the fact that FileCheck is not actually
530line-oriented when it matches, this allows you to define two separate
531CHECK lines that match on the same line.
532
533Variables and substitutions
534---------------------------
535
536With a RUN line there are a number of substitutions that are permitted.
537In general, any Tcl variable that is available in the ``substitute``
538function (in ``test/lib/llvm.exp``) can be substituted into a RUN line.
539To make a substitution just write the variable's name preceded by a $.
540Additionally, for compatibility reasons with previous versions of the
541test library, certain names can be accessed with an alternate syntax: a
542% prefix. These alternates are deprecated and may go away in a future
543version.
544
545Here are the available variable names. The alternate syntax is listed in
546parentheses.
547
548``$test`` (``%s``)
549 The full path to the test case's source. This is suitable for passing on
550 the command line as the input to an llvm tool.
551
552``%(line)``, ``%(line+<number>)``, ``%(line-<number>)``
553 The number of the line where this variable is used, with an optional
554 integer offset. This can be used in tests with multiple RUN: lines,
555 which reference test file's line numbers.
556
557``$srcdir``
558 The source directory from where the "``make check``" was run.
559
560``objdir``
561 The object directory that corresponds to the ``$srcdir``.
562
563``subdir``
564 A partial path from the ``test`` directory that contains the
565 sub-directory that contains the test source being executed.
566
567``srcroot``
568 The root directory of the LLVM src tree.
569
570``objroot``
571 The root directory of the LLVM object tree. This could be the same as
572 the srcroot.
573
574``path``
575 The path to the directory that contains the test case source. This is
576 for locating any supporting files that are not generated by the test,
577 but used by the test.
578
579``tmp``
580 The path to a temporary file name that could be used for this test case.
581 The file name won't conflict with other test cases. You can append to it
582 if you need multiple temporaries. This is useful as the destination of
583 some redirected output.
584
585``target_triplet`` (``%target_triplet``)
586 The target triplet that corresponds to the current host machine (the one
587 running the test cases). This should probably be called "host".
588
589``link`` (``%link``)
590 This full link command used to link LLVM executables. This has all the
591 configured -I, -L and -l options.
592
593``shlibext`` (``%shlibext``)
594 The suffix for the host platforms share library (dll) files. This
595 includes the period as the first character.
596
597To add more variables, two things need to be changed. First, add a line
598in the ``test/Makefile`` that creates the ``site.exp`` file. This will
599"set" the variable as a global in the site.exp file. Second, in the
600``test/lib/llvm.exp`` file, in the substitute proc, add the variable
601name to the list of "global" declarations at the beginning of the proc.
602That's it, the variable can then be used in test scripts.
603
604Other Features
605--------------
606
607To make RUN line writing easier, there are several shell scripts located
608in the ``llvm/test/Scripts`` directory. This directory is in the PATH
609when running tests, so you can just call these scripts using their name.
610For example:
611
612``ignore``
613 This script runs its arguments and then always returns 0. This is useful
614 in cases where the test needs to cause a tool to generate an error (e.g.
615 to check the error output). However, any program in a pipeline that
616 returns a non-zero result will cause the test to fail. This script
617 overcomes that issue and nicely documents that the test case is
618 purposefully ignoring the result code of the tool
619``not``
620 This script runs its arguments and then inverts the result code from it.
621 Zero result codes become 1. Non-zero result codes become 0. This is
622 useful to invert the result of a grep. For example "not grep X" means
623 succeed only if you don't find X in the input.
624
625Sometimes it is necessary to mark a test case as "expected fail" or
626XFAIL. You can easily mark a test as XFAIL just by including ``XFAIL:``
627on a line near the top of the file. This signals that the test case
628should succeed if the test fails. Such test cases are counted separately
629by the testing tool. To specify an expected fail, use the XFAIL keyword
630in the comments of the test program followed by a colon and one or more
631failure patterns. Each failure pattern can be either ``*`` (to specify
632fail everywhere), or a part of a target triple (indicating the test
633should fail on that platform), or the name of a configurable feature
634(for example, ``loadable_module``). If there is a match, the test is
635expected to fail. If not, the test is expected to succeed. To XFAIL
636everywhere just specify ``XFAIL: *``. Here is an example of an ``XFAIL``
637line:
638
639.. code-block:: llvm
640
641 ; XFAIL: darwin,sun
642
643To make the output more useful, the ``llvm_runtest`` function wil scan
644the lines of the test case for ones that contain a pattern that matches
645``PR[0-9]+``. This is the syntax for specifying a PR (Problem Report) number
646that is related to the test case. The number after "PR" specifies the
647LLVM bugzilla number. When a PR number is specified, it will be used in
648the pass/fail reporting. This is useful to quickly get some context when
649a test fails.
650
651Finally, any line that contains "END." will cause the special
652interpretation of lines to terminate. This is generally done right after
653the last RUN: line. This has two side effects:
654
655(a) it prevents special interpretation of lines that are part of the test
656 program, not the instructions to the test case, and
657
658(b) it speeds things up for really big test cases by avoiding
659 interpretation of the remainder of the file.
660
661``test-suite`` Overview
662=======================
663
664The ``test-suite`` module contains a number of programs that can be
665compiled and executed. The ``test-suite`` includes reference outputs for
666all of the programs, so that the output of the executed program can be
667checked for correctness.
668
669``test-suite`` tests are divided into three types of tests: MultiSource,
670SingleSource, and External.
671
672- ``test-suite/SingleSource``
673
674 The SingleSource directory contains test programs that are only a
675 single source file in size. These are usually small benchmark
676 programs or small programs that calculate a particular value. Several
677 such programs are grouped together in each directory.
678
679- ``test-suite/MultiSource``
680
681 The MultiSource directory contains subdirectories which contain
682 entire programs with multiple source files. Large benchmarks and
683 whole applications go here.
684
685- ``test-suite/External``
686
687 The External directory contains Makefiles for building code that is
688 external to (i.e., not distributed with) LLVM. The most prominent
689 members of this directory are the SPEC 95 and SPEC 2000 benchmark
690 suites. The ``External`` directory does not contain these actual
691 tests, but only the Makefiles that know how to properly compile these
692 programs from somewhere else. When using ``LNT``, use the
693 ``--test-externals`` option to include these tests in the results.
694
Sean Silvad5f4b4c2012-11-14 23:11:10 +0000695.. _test-suite-quickstart:
696
Sean Silvaac99eed2012-11-14 21:09:30 +0000697``test-suite`` Quickstart
698-------------------------
699
700The modern way of running the ``test-suite`` is focused on testing and
701benchmarking complete compilers using the
702`LNT <http://llvm.org/docs/lnt>`_ testing infrastructure.
703
704For more information on using LNT to execute the ``test-suite``, please
705see the `LNT Quickstart <http://llvm.org/docs/lnt/quickstart.html>`_
706documentation.
707
708``test-suite`` Makefiles
709------------------------
710
711Historically, the ``test-suite`` was executed using a complicated setup
712of Makefiles. The LNT based approach above is recommended for most
713users, but there are some testing scenarios which are not supported by
714the LNT approach. In addition, LNT currently uses the Makefile setup
715under the covers and so developers who are interested in how LNT works
716under the hood may want to understand the Makefile based setup.
717
718For more information on the ``test-suite`` Makefile setup, please see
Sean Silvad5f4b4c2012-11-14 23:11:10 +0000719the :doc:`Test Suite Makefile Guide <TestSuiteMakefileGuide>`.