blob: 18c355058915618b8f26b1528b25ca065c1c0e80 [file] [log] [blame]
Misha Brukman1d83e112004-03-01 18:21:04 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
John Criswell020cbd82003-10-10 18:42:49 +00003<html>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +00004<head>
NAKAMURA Takumi5c6e4df2011-10-31 11:21:59 +00005 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Matthijs Kooijman31ce08f2008-06-24 12:58:31 +00006 <title>LLVM Testing Infrastructure Guide</title>
Daniel Dunbaradea4972012-04-19 20:20:34 +00007 <link rel="stylesheet" href="_static/llvm.css" type="text/css">
Brian Gaekeaf19f2e2003-10-23 18:10:28 +00008</head>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +00009<body>
10
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000011<h1>
Matthijs Kooijman31ce08f2008-06-24 12:58:31 +000012 LLVM Testing Infrastructure Guide
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000013</h1>
John Criswell020cbd82003-10-10 18:42:49 +000014
Brian Gaekeaf19f2e2003-10-23 18:10:28 +000015<ol>
Reid Spencer820e2472004-11-01 08:30:14 +000016 <li><a href="#overview">Overview</a></li>
Matthijs Kooijman31ce08f2008-06-24 12:58:31 +000017 <li><a href="#requirements">Requirements</a></li>
18 <li><a href="#org">LLVM testing infrastructure organization</a>
Reid Spencer820e2472004-11-01 08:30:14 +000019 <ul>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000020 <li><a href="#regressiontests">Regression tests</a></li>
Daniel Dunbar90d9e022012-03-15 22:19:35 +000021 <li><a href="#testsuite"><tt>test-suite</tt></a></li>
Devang Patel40d438e2010-11-11 00:13:39 +000022 <li><a href="#debuginfotests">Debugging Information tests</a></li>
Reid Spencer820e2472004-11-01 08:30:14 +000023 </ul>
24 </li>
Matthijs Kooijman31ce08f2008-06-24 12:58:31 +000025 <li><a href="#quick">Quick start</a>
Chris Lattnereb82da82006-05-23 01:40:20 +000026 <ul>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000027 <li><a href="#quickregressiontests">Regression tests</a></li>
Devang Patel40d438e2010-11-11 00:13:39 +000028 <li><a href="#quickdebuginfotests">Debugging Information tests</a></li>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000029 </ul>
30 </li>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000031 <li><a href="#rtstructure">Regression test structure</a>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000032 <ul>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000033 <li><a href="#rtcustom">Writing new regression tests</a></li>
Chris Lattner3d2de1d2009-08-15 15:40:48 +000034 <li><a href="#FileCheck">The FileCheck utility</a></li>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000035 <li><a href="#rtvars">Variables and substitutions</a></li>
36 <li><a href="#rtfeatures">Other features</a></li>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000037 </ul>
38 </li>
Daniel Dunbar90d9e022012-03-15 22:19:35 +000039 <li><a href="#testsuiteoverview"><tt>test-suite</tt> Overview</a>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000040 <ul>
Daniel Dunbar90d9e022012-03-15 22:19:35 +000041 <li><a href="#testsuitequickstart"><tt>test-suite</tt> Quickstart</a></li>
42 <li><a href="#testsuitemakefiles"><tt>test-suite</tt> Makefiles</a></li>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000043 </ul>
Chris Lattnereb82da82006-05-23 01:40:20 +000044 </li>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +000045</ol>
John Criswell020cbd82003-10-10 18:42:49 +000046
Chris Lattner7911ce22004-05-23 21:07:27 +000047<div class="doc_author">
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000048 <p>Written by John T. Criswell, Daniel Dunbar, Reid Spencer, and Tanya Lattner</p>
Chris Lattner7911ce22004-05-23 21:07:27 +000049</div>
John Criswell020cbd82003-10-10 18:42:49 +000050
Reid Spencer8284f1f2004-09-05 20:07:26 +000051<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000052<h2><a name="overview">Overview</a></h2>
Reid Spencer8284f1f2004-09-05 20:07:26 +000053<!--=========================================================================-->
John Criswell020cbd82003-10-10 18:42:49 +000054
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +000055<div>
John Criswell020cbd82003-10-10 18:42:49 +000056
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000057<p>This document is the reference manual for the LLVM testing infrastructure. It
58documents the structure of the LLVM testing infrastructure, the tools needed to
59use it, and how to add and run tests.</p>
John Criswell020cbd82003-10-10 18:42:49 +000060
Misha Brukman1d83e112004-03-01 18:21:04 +000061</div>
John Criswell020cbd82003-10-10 18:42:49 +000062
Reid Spencer8284f1f2004-09-05 20:07:26 +000063<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000064<h2><a name="requirements">Requirements</a></h2>
Reid Spencer8284f1f2004-09-05 20:07:26 +000065<!--=========================================================================-->
John Criswell020cbd82003-10-10 18:42:49 +000066
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +000067<div>
John Criswell020cbd82003-10-10 18:42:49 +000068
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000069<p>In order to use the LLVM testing infrastructure, you will need all of the
70software required to build LLVM, as well
71as <a href="http://python.org">Python</a> 2.4 or later.</p>
Jim Laskeya2dee012006-03-27 18:41:06 +000072
Misha Brukman1d83e112004-03-01 18:21:04 +000073</div>
John Criswell020cbd82003-10-10 18:42:49 +000074
Reid Spencer8284f1f2004-09-05 20:07:26 +000075<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000076<h2><a name="org">LLVM testing infrastructure organization</a></h2>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000077<!--=========================================================================-->
78
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +000079<div>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000080
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000081<p>The LLVM testing infrastructure contains two major categories of tests:
82regression tests and whole programs. The regression tests are contained inside
83the LLVM repository itself under <tt>llvm/test</tt> and are expected to always
Daniel Dunbar90d9e022012-03-15 22:19:35 +000084pass -- they should be run before every commit.</p>
85
86<p>The whole programs tests are referred to as the "LLVM test suite" (or
87"test-suite") and are in the <tt>test-suite</tt> module in subversion. For
88historical reasons, these tests are also referred to as the "nightly tests" in
89places, which is less ambiguous than "test-suite" and remains in use although we
90run them much more often than nightly.</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000091
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000092<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000093<h3><a name="regressiontests">Regression tests</a></h3>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000094<!-- _______________________________________________________________________ -->
95
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +000096<div>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +000097
Daniel Dunbarcd3b1172010-08-02 01:20:23 +000098<p>The regression tests are small pieces of code that test a specific feature of
99LLVM or trigger a specific bug in LLVM. They are usually written in LLVM
100assembly language, but can be written in other languages if the test targets a
101particular language front end (and the appropriate <tt>--with-llvmgcc</tt>
102options were used at <tt>configure</tt> time of the <tt>llvm</tt> module). These
103tests are driven by the 'lit' testing tool, which is part of LLVM.</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000104
Shantonu Sen1b6d3da2009-06-26 05:44:53 +0000105<p>These code fragments are not complete programs. The code generated
106from them is never executed to determine correct behavior.</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000107
108<p>These code fragment tests are located in the <tt>llvm/test</tt>
109directory.</p>
110
111<p>Typically when a bug is found in LLVM, a regression test containing
112just enough code to reproduce the problem should be written and placed
113somewhere underneath this directory. In most cases, this will be a small
114piece of LLVM assembly language code, often distilled from an actual
115application or benchmark.</p>
116
117</div>
118
119<!-- _______________________________________________________________________ -->
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000120<h3><a name="testsuite"><tt>test-suite</tt></a></h3>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000121<!-- _______________________________________________________________________ -->
122
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000123<div>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000124
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000125<p>The test suite contains whole programs, which are pieces of code which can be
126compiled and linked into a stand-alone program that can be executed. These
127programs are generally written in high level languages such as C or C++.</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000128
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000129<p>These programs are compiled using a user specified compiler and set of flags,
130and then executed to capture the program output and timing information. The
131output of these programs is compared to a reference output to ensure that the
132program is being compiled correctly.</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000133
134<p>In addition to compiling and executing programs, whole program tests serve as
135a way of benchmarking LLVM performance, both in terms of the efficiency of the
136programs generated as well as the speed with which LLVM compiles, optimizes, and
137generates code.</p>
138
Matthijs Kooijman31ce08f2008-06-24 12:58:31 +0000139<p>The test-suite is located in the <tt>test-suite</tt> Subversion module.</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000140
141</div>
142
Devang Patel40d438e2010-11-11 00:13:39 +0000143<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000144<h3><a name="debuginfotests">Debugging Information tests</a></h3>
Devang Patel40d438e2010-11-11 00:13:39 +0000145<!-- _______________________________________________________________________ -->
146
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000147<div>
Devang Patel40d438e2010-11-11 00:13:39 +0000148
149<p>The test suite contains tests to check quality of debugging information.
150The test are written in C based languages or in LLVM assembly language. </p>
151
152<p>These tests are compiled and run under a debugger. The debugger output
153is checked to validate of debugging information. See README.txt in the
154test suite for more information . This test suite is located in the
155<tt>debuginfo-tests</tt> Subversion module. </p>
156
157</div>
158
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000159</div>
160
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000161<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000162<h2><a name="quick">Quick start</a></h2>
Reid Spencer8284f1f2004-09-05 20:07:26 +0000163<!--=========================================================================-->
John Criswell020cbd82003-10-10 18:42:49 +0000164
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000165<div>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +0000166
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000167 <p>The tests are located in two separate Subversion modules. The regressions
168 tests are in the main "llvm" module under the directory
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000169 <tt>llvm/test</tt> (so you get these tests for free with the main llvm
170 tree). Use "make check-all" to run the regression tests after building
171 LLVM.</p>
172
173 <p>The more comprehensive test suite that includes whole programs in C and C++
174 is in the <tt>test-suite</tt>
175 module. See <a href="#testsuitequickstart"><tt>test-suite</tt> Quickstart</a>
176 for more information on running these tests.</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000177
178<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000179<h3><a name="quickregressiontests">Regression tests</a></h3>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000180<div>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000181<!-- _______________________________________________________________________ -->
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000182<p>To run all of the LLVM regression tests, use master Makefile in
183 the <tt>llvm/test</tt> directory:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000184
185<div class="doc_code">
Misha Brukman1d83e112004-03-01 18:21:04 +0000186<pre>
Reid Spencer8284f1f2004-09-05 20:07:26 +0000187% gmake -C llvm/test
Misha Brukman1d83e112004-03-01 18:21:04 +0000188</pre>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000189</div>
190
191<p>or</p>
192
193<div class="doc_code">
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000194<pre>
195% gmake check
196</pre>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000197</div>
John Criswell0c8a9a12005-05-13 20:25:49 +0000198
NAKAMURA Takumib9a33632011-04-09 02:13:37 +0000199<p>If you have <a href="http://clang.llvm.org/">Clang</a> checked out and built,
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000200you can run the LLVM and Clang tests simultaneously using:</p>
201
202<p>or</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000203
204<div class="doc_code">
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000205<pre>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000206% gmake check-all
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000207</pre>
208</div>
209
Nuno Lopes21bfe0b2008-11-25 15:57:52 +0000210<p>To run the tests with Valgrind (Memcheck by default), just append
211<tt>VG=1</tt> to the commands above, e.g.:</p>
212
213<div class="doc_code">
214<pre>
215% gmake check VG=1
216</pre>
217</div>
218
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000219<p>To run individual tests or subsets of tests, you can use the 'llvm-lit'
220script which is built as part of LLVM. For example, to run the
221'Integer/BitCast.ll' test by itself you can run:</p>
222
223<div class="doc_code">
224<pre>
225% llvm-lit ~/llvm/test/Integer/BitCast.ll
226</pre>
227</div>
228
229<p>or to run all of the ARM CodeGen tests:</p>
230
231<div class="doc_code">
232<pre>
233% llvm-lit ~/llvm/test/CodeGen/ARM
234</pre>
235</div>
236
237<p>For more information on using the 'lit' tool, see 'llvm-lit --help' or the
238'lit' man page.</p>
239
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000240</div>
241
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000242<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000243<h3><a name="quickdebuginfotests">Debugging Information tests</a></h3>
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000244<div>
Devang Patel40d438e2010-11-11 00:13:39 +0000245<!-- _______________________________________________________________________ -->
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000246<div>
Devang Patel40d438e2010-11-11 00:13:39 +0000247
248<p> To run debugging information tests simply checkout the tests inside
249clang/test directory. </p>
250
251<div class="doc_code">
252<pre>
253%cd clang/test
254% svn co http://llvm.org/svn/llvm-project/debuginfo-tests/trunk debuginfo-tests
255</pre>
256</div>
257
258<p> These tests are already set up to run as part of clang regression tests.</p>
259
260</div>
261
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000262</div>
263
264</div>
265
Reid Spencer8284f1f2004-09-05 20:07:26 +0000266<!--=========================================================================-->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000267<h2><a name="rtstructure">Regression test structure</a></h2>
Reid Spencer8284f1f2004-09-05 20:07:26 +0000268<!--=========================================================================-->
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000269<div>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000270 <p>The LLVM regression tests are driven by 'lit' and are located in
271 the <tt>llvm/test</tt> directory.
Misha Brukman1d83e112004-03-01 18:21:04 +0000272
Reid Spencera99256e2007-02-08 17:00:55 +0000273 <p>This directory contains a large array of small tests
274 that exercise various features of LLVM and to ensure that regressions do not
275 occur. The directory is broken into several sub-directories, each focused on
Bill Wendlingeb6aace2007-09-22 09:20:07 +0000276 a particular area of LLVM. A few of the important ones are:</p>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000277
Bill Wendlingeb6aace2007-09-22 09:20:07 +0000278 <ul>
Reid Spencera99256e2007-02-08 17:00:55 +0000279 <li><tt>Analysis</tt>: checks Analysis passes.</li>
280 <li><tt>Archive</tt>: checks the Archive library.</li>
281 <li><tt>Assembler</tt>: checks Assembly reader/writer functionality.</li>
Gabor Greif04367bf2007-07-06 22:07:22 +0000282 <li><tt>Bitcode</tt>: checks Bitcode reader/writer functionality.</li>
Reid Spencera99256e2007-02-08 17:00:55 +0000283 <li><tt>CodeGen</tt>: checks code generation and each target.</li>
284 <li><tt>Features</tt>: checks various features of the LLVM language.</li>
Gabor Greif04367bf2007-07-06 22:07:22 +0000285 <li><tt>Linker</tt>: tests bitcode linking.</li>
Reid Spencera99256e2007-02-08 17:00:55 +0000286 <li><tt>Transforms</tt>: tests each of the scalar, IPO, and utility
287 transforms to ensure they make the right transformations.</li>
288 <li><tt>Verifier</tt>: tests the IR verifier.</li>
Bill Wendlingeb6aace2007-09-22 09:20:07 +0000289 </ul>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +0000290
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000291<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000292<h3><a name="rtcustom">Writing new regression tests</a></h3>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000293<!-- _______________________________________________________________________ -->
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000294<div>
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000295 <p>The regression test structure is very simple, but does require some
296 information to be set. This information is gathered via <tt>configure</tt> and
297 is written to a file, <tt>lit.site.cfg</tt>
298 in <tt>llvm/test</tt>. The <tt>llvm/test</tt> Makefile does this work for
299 you.</p>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000300
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000301 <p>In order for the regression tests to work, each directory of tests must
Eli Benderskyecc754d2012-04-18 08:02:25 +0000302 have a <tt>lit.local.cfg</tt> file. Lit looks for this file to determine how
303 to run the tests. This file is just Python code and thus is very flexible,
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000304 but we've standardized it for the LLVM regression tests. If you're adding a
Eli Benderskyecc754d2012-04-18 08:02:25 +0000305 directory of tests, just copy <tt>lit.local.cfg</tt> from another directory to
306 get running. The standard <tt>lit.local.cfg</tt> simply specifies which files
307 to look in for tests. Any directory that contains only directories does not
308 need the <tt>lit.local.cfg</tt> file. Read the
309 <a href="http://llvm.org/cmds/lit.html">Lit documentation</a> for more
310 information. </p>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000311
Daniel Dunbarb3593a62012-05-08 18:11:49 +0000312 <p>The <tt>lit</tt> test runner looks at each file that is passed to it and
313 gathers any lines together that match "RUN:". These are the "RUN" lines that
314 specify how the test is to be run. So, each test script must contain RUN lines
315 if it is to do anything. If there are no RUN lines, <tt>lit</tt> function will
316 issue an error and the test will fail.</p>
Misha Brukmanfc1a27b2005-03-10 22:51:59 +0000317
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000318 <p>RUN lines are specified in the comments of the test program using the
319 keyword <tt>RUN</tt> followed by a colon, and lastly the command (pipeline)
320 to execute. Together, these lines form the "script" that
Daniel Dunbarb3593a62012-05-08 18:11:49 +0000321 <tt>lit</tt> executes to run the test case. The syntax of the RUN lines is
322 similar to a shell's syntax for pipelines including I/O redirection and
323 variable substitution. However, even though these lines may <i>look</i> like
324 a shell script, they are not. RUN lines are interpreted directly by the
325 Tcl <tt>exec</tt> command. They are never executed by a shell. Consequently
326 the syntax differs from normal shell script syntax in a few ways. You can
327 specify as many RUN lines as needed.</p>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000328
David Greene18d49872011-01-03 17:30:25 +0000329 <p>lit performs substitution on each RUN line to replace LLVM tool
330 names with the full paths to the executable built for each tool (in
331 $(LLVM_OBJ_ROOT)/$(BuildMode)/bin). This ensures that lit does not
332 invoke any stray LLVM tools in the user's path during testing.</p>
333
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000334 <p>Each RUN line is executed on its own, distinct from other lines unless
335 its last character is <tt>\</tt>. This continuation character causes the RUN
336 line to be concatenated with the next one. In this way you can build up long
337 pipelines of commands without making huge line lengths. The lines ending in
338 <tt>\</tt> are concatenated until a RUN line that doesn't end in <tt>\</tt> is
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000339 found. This concatenated set of RUN lines then constitutes one execution.
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000340 Tcl will substitute variables and arrange for the pipeline to be executed. If
341 any process in the pipeline fails, the entire line (and test case) fails too.
342 </p>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000343
Reid Spencerf1902772007-04-15 08:01:04 +0000344 <p> Below is an example of legal RUN lines in a <tt>.ll</tt> file:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000345
346<div class="doc_code">
347<pre>
348; RUN: llvm-as &lt; %s | llvm-dis &gt; %t1
349; RUN: llvm-dis &lt; %s.bc-13 &gt; %t2
350; RUN: diff %t1 %t2
351</pre>
352</div>
Reid Spencerf1902772007-04-15 08:01:04 +0000353
Reid Spencer024a1262007-04-14 23:27:06 +0000354 <p>As with a Unix shell, the RUN: lines permit pipelines and I/O redirection
355 to be used. However, the usage is slightly different than for Bash. To check
356 what's legal, see the documentation for the
357 <a href="http://www.tcl.tk/man/tcl8.5/TclCmd/exec.htm#M2">Tcl exec</a>
358 command and the
359 <a href="http://www.tcl.tk/man/tcl8.5/tutorial/Tcl26.html">tutorial</a>.
360 The major differences are:</p>
361 <ul>
362 <li>You can't do <tt>2&gt;&amp;1</tt>. That will cause Tcl to write to a
363 file named <tt>&amp;1</tt>. Usually this is done to get stderr to go through
364 a pipe. You can do that in tcl with <tt>|&amp;</tt> so replace this idiom:
365 <tt>... 2&gt;&amp;1 | grep</tt> with <tt>... |&amp; grep</tt></li>
366 <li>You can only redirect to a file, not to another descriptor and not from
367 a here document.</li>
368 <li>tcl supports redirecting to open files with the @ syntax but you
369 shouldn't use that here.</li>
370 </ul>
371
Reid Spencerf1902772007-04-15 08:01:04 +0000372 <p>There are some quoting rules that you must pay attention to when writing
373 your RUN lines. In general nothing needs to be quoted. Tcl won't strip off any
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000374 quote characters so they will get passed to the invoked program. For
375 example:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000376
377<div class="doc_code">
378<pre>
379... | grep 'find this string'
380</pre>
381</div>
382
Reid Spencerf1902772007-04-15 08:01:04 +0000383 <p>This will fail because the ' characters are passed to grep. This would
384 instruction grep to look for <tt>'find</tt> in the files <tt>this</tt> and
385 <tt>string'</tt>. To avoid this use curly braces to tell Tcl that it should
386 treat everything enclosed as one value. So our example would become:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000387
388<div class="doc_code">
389<pre>
390... | grep {find this string}
391</pre>
392</div>
393
Reid Spencerf1902772007-04-15 08:01:04 +0000394 <p>Additionally, the characters <tt>[</tt> and <tt>]</tt> are treated
395 specially by Tcl. They tell Tcl to interpret the content as a command to
396 execute. Since these characters are often used in regular expressions this can
397 have disastrous results and cause the entire test run in a directory to fail.
398 For example, a common idiom is to look for some basicblock number:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000399
400<div class="doc_code">
401<pre>
402... | grep bb[2-8]
403</pre>
404</div>
405
Reid Spencerf1902772007-04-15 08:01:04 +0000406 <p>This, however, will cause Tcl to fail because its going to try to execute
407 a program named "2-8". Instead, what you want is this:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000408
409<div class="doc_code">
410<pre>
411... | grep {bb\[2-8\]}
412</pre>
413</div>
414
Reid Spencerf1902772007-04-15 08:01:04 +0000415 <p>Finally, if you need to pass the <tt>\</tt> character down to a program,
416 then it must be doubled. This is another Tcl special character. So, suppose
417 you had:
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000418
419<div class="doc_code">
420<pre>
421... | grep 'i32\*'
422</pre>
423</div>
424
Reid Spencerf1902772007-04-15 08:01:04 +0000425 <p>This will fail to match what you want (a pointer to i32). First, the
426 <tt>'</tt> do not get stripped off. Second, the <tt>\</tt> gets stripped off
427 by Tcl so what grep sees is: <tt>'i32*'</tt>. That's not likely to match
428 anything. To resolve this you must use <tt>\\</tt> and the <tt>{}</tt>, like
429 this:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000430
431<div class="doc_code">
432<pre>
433... | grep {i32\\*}
434</pre>
435</div>
Reid Spencerf1902772007-04-15 08:01:04 +0000436
Shantonu Sen1b6d3da2009-06-26 05:44:53 +0000437<p>If your system includes GNU <tt>grep</tt>, make sure
438that <tt>GREP_OPTIONS</tt> is not set in your environment. Otherwise,
439you may get invalid results (both false positives and false
440negatives).</p>
441
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000442</div>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000443
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000444<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000445<h3><a name="FileCheck">The FileCheck utility</a></h3>
Chris Lattner3d2de1d2009-08-15 15:40:48 +0000446<!-- _______________________________________________________________________ -->
447
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000448<div>
Chris Lattner3d2de1d2009-08-15 15:40:48 +0000449
450<p>A powerful feature of the RUN: lines is that it allows any arbitrary commands
451 to be executed as part of the test harness. While standard (portable) unix
452 tools like 'grep' work fine on run lines, as you see above, there are a lot
Chris Lattner272e3082009-08-15 16:51:06 +0000453 of caveats due to interaction with Tcl syntax, and we want to make sure the
Chris Lattner3d2de1d2009-08-15 15:40:48 +0000454 run lines are portable to a wide range of systems. Another major problem is
455 that grep is not very good at checking to verify that the output of a tools
456 contains a series of different output in a specific order. The FileCheck
457 tool was designed to help with these problems.</p>
458
Chris Lattner272e3082009-08-15 16:51:06 +0000459<p>FileCheck (whose basic command line arguments are described in <a
460 href="http://llvm.org/cmds/FileCheck.html">the FileCheck man page</a> is
461 designed to read a file to check from standard input, and the set of things
462 to verify from a file specified as a command line argument. A simple example
463 of using FileCheck from a RUN line looks like this:</p>
464
465<div class="doc_code">
466<pre>
467; RUN: llvm-as &lt; %s | llc -march=x86-64 | <b>FileCheck %s</b>
468</pre>
469</div>
Chris Lattner3d2de1d2009-08-15 15:40:48 +0000470
Chris Lattner272e3082009-08-15 16:51:06 +0000471<p>This syntax says to pipe the current file ("%s") into llvm-as, pipe that into
472llc, then pipe the output of llc into FileCheck. This means that FileCheck will
473be verifying its standard input (the llc output) against the filename argument
474specified (the original .ll file specified by "%s"). To see how this works,
Eli Benderskyecc754d2012-04-18 08:02:25 +0000475let's look at the rest of the .ll file (after the RUN line):</p>
Chris Lattner272e3082009-08-15 16:51:06 +0000476
477<div class="doc_code">
478<pre>
479define void @sub1(i32* %p, i32 %v) {
480entry:
481; <b>CHECK: sub1:</b>
482; <b>CHECK: subl</b>
483 %0 = tail call i32 @llvm.atomic.load.sub.i32.p0i32(i32* %p, i32 %v)
484 ret void
485}
486
487define void @inc4(i64* %p) {
488entry:
489; <b>CHECK: inc4:</b>
490; <b>CHECK: incq</b>
491 %0 = tail call i64 @llvm.atomic.load.add.i64.p0i64(i64* %p, i64 1)
492 ret void
493}
494</pre>
495</div>
496
497<p>Here you can see some "CHECK:" lines specified in comments. Now you can see
498how the file is piped into llvm-as, then llc, and the machine code output is
499what we are verifying. FileCheck checks the machine code output to verify that
500it matches what the "CHECK:" lines specify.</p>
501
502<p>The syntax of the CHECK: lines is very simple: they are fixed strings that
503must occur in order. FileCheck defaults to ignoring horizontal whitespace
504differences (e.g. a space is allowed to match a tab) but otherwise, the contents
505of the CHECK: line is required to match some thing in the test file exactly.</p>
506
507<p>One nice thing about FileCheck (compared to grep) is that it allows merging
508test cases together into logical groups. For example, because the test above
509is checking for the "sub1:" and "inc4:" labels, it will not match unless there
510is a "subl" in between those labels. If it existed somewhere else in the file,
511that would not count: "grep subl" matches if subl exists anywhere in the
512file.</p>
513
Chris Lattner5dafafd2009-08-15 18:32:21 +0000514<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000515<h4>
516 <a name="FileCheck-check-prefix">The FileCheck -check-prefix option</a>
517</h4>
Chris Lattner272e3082009-08-15 16:51:06 +0000518
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000519<div>
Chris Lattner5dafafd2009-08-15 18:32:21 +0000520
Chris Lattner272e3082009-08-15 16:51:06 +0000521<p>The FileCheck -check-prefix option allows multiple test configurations to be
522driven from one .ll file. This is useful in many circumstances, for example,
523testing different architectural variants with llc. Here's a simple example:</p>
524
Chris Lattner272e3082009-08-15 16:51:06 +0000525<div class="doc_code">
526<pre>
527; RUN: llvm-as &lt; %s | llc -mtriple=i686-apple-darwin9 -mattr=sse41 \
528; RUN: | <b>FileCheck %s -check-prefix=X32</b>
529; RUN: llvm-as &lt; %s | llc -mtriple=x86_64-apple-darwin9 -mattr=sse41 \
530; RUN: | <b>FileCheck %s -check-prefix=X64</b>
531
532define &lt;4 x i32&gt; @pinsrd_1(i32 %s, &lt;4 x i32&gt; %tmp) nounwind {
533 %tmp1 = insertelement &lt;4 x i32&gt; %tmp, i32 %s, i32 1
534 ret &lt;4 x i32&gt; %tmp1
535; <b>X32:</b> pinsrd_1:
536; <b>X32:</b> pinsrd $1, 4(%esp), %xmm0
537
538; <b>X64:</b> pinsrd_1:
539; <b>X64:</b> pinsrd $1, %edi, %xmm0
540}
541</pre>
542</div>
543
544<p>In this case, we're testing that we get the expected code generation with
545both 32-bit and 64-bit code generation.</p>
546
Chris Lattner5dafafd2009-08-15 18:32:21 +0000547</div>
548
549<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000550<h4>
551 <a name="FileCheck-CHECK-NEXT">The "CHECK-NEXT:" directive</a>
552</h4>
Chris Lattner5dafafd2009-08-15 18:32:21 +0000553
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000554<div>
Chris Lattner5dafafd2009-08-15 18:32:21 +0000555
556<p>Sometimes you want to match lines and would like to verify that matches
Duncan Sandsab4c3662011-02-15 09:23:02 +0000557happen on exactly consecutive lines with no other lines in between them. In
Chris Lattner5dafafd2009-08-15 18:32:21 +0000558this case, you can use CHECK: and CHECK-NEXT: directives to specify this. If
559you specified a custom check prefix, just use "&lt;PREFIX&gt;-NEXT:". For
560example, something like this works as you'd expect:</p>
561
562<div class="doc_code">
563<pre>
Chris Lattnere93f3732009-08-15 18:33:10 +0000564define void @t2(&lt;2 x double&gt;* %r, &lt;2 x double&gt;* %A, double %B) {
Chris Lattner5dafafd2009-08-15 18:32:21 +0000565 %tmp3 = load &lt;2 x double&gt;* %A, align 16
566 %tmp7 = insertelement &lt;2 x double&gt; undef, double %B, i32 0
Chris Lattnere93f3732009-08-15 18:33:10 +0000567 %tmp9 = shufflevector &lt;2 x double&gt; %tmp3,
568 &lt;2 x double&gt; %tmp7,
569 &lt;2 x i32&gt; &lt; i32 0, i32 2 &gt;
Chris Lattner5dafafd2009-08-15 18:32:21 +0000570 store &lt;2 x double&gt; %tmp9, &lt;2 x double&gt;* %r, align 16
571 ret void
572
573; <b>CHECK:</b> t2:
574; <b>CHECK:</b> movl 8(%esp), %eax
575; <b>CHECK-NEXT:</b> movapd (%eax), %xmm0
576; <b>CHECK-NEXT:</b> movhpd 12(%esp), %xmm0
577; <b>CHECK-NEXT:</b> movl 4(%esp), %eax
578; <b>CHECK-NEXT:</b> movapd %xmm0, (%eax)
579; <b>CHECK-NEXT:</b> ret
580}
581</pre>
582</div>
583
584<p>CHECK-NEXT: directives reject the input unless there is exactly one newline
585between it an the previous directive. A CHECK-NEXT cannot be the first
586directive in a file.</p>
Chris Lattner3d2de1d2009-08-15 15:40:48 +0000587
588</div>
589
590<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000591<h4>
592 <a name="FileCheck-CHECK-NOT">The "CHECK-NOT:" directive</a>
593</h4>
Chris Lattnerf15380b2009-09-20 22:35:26 +0000594
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000595<div>
Chris Lattnerf15380b2009-09-20 22:35:26 +0000596
597<p>The CHECK-NOT: directive is used to verify that a string doesn't occur
Chris Lattner4d0764d2009-09-20 22:45:18 +0000598between two matches (or the first match and the beginning of the file). For
Chris Lattnerf15380b2009-09-20 22:35:26 +0000599example, to verify that a load is removed by a transformation, a test like this
600can be used:</p>
601
602<div class="doc_code">
603<pre>
604define i8 @coerce_offset0(i32 %V, i32* %P) {
605 store i32 %V, i32* %P
606
607 %P2 = bitcast i32* %P to i8*
608 %P3 = getelementptr i8* %P2, i32 2
609
610 %A = load i8* %P3
611 ret i8 %A
612; <b>CHECK:</b> @coerce_offset0
613; <b>CHECK-NOT:</b> load
614; <b>CHECK:</b> ret i8
615}
616</pre>
617</div>
618
619</div>
620
621<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000622<h4>
623 <a name="FileCheck-Matching">FileCheck Pattern Matching Syntax</a>
624</h4>
Chris Lattner52870082009-09-24 21:47:32 +0000625
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000626<div>
Chris Lattner52870082009-09-24 21:47:32 +0000627
Daniel Dunbar21e993c2012-04-19 16:31:37 +0000628<!-- {% raw %} -->
629
Chris Lattner52870082009-09-24 21:47:32 +0000630<p>The CHECK: and CHECK-NOT: directives both take a pattern to match. For most
631uses of FileCheck, fixed string matching is perfectly sufficient. For some
632things, a more flexible form of matching is desired. To support this, FileCheck
633allows you to specify regular expressions in matching strings, surrounded by
634double braces: <b>{{yourregex}}</b>. Because we want to use fixed string
635matching for a majority of what we do, FileCheck has been designed to support
636mixing and matching fixed string matching with regular expressions. This allows
637you to write things like this:</p>
638
639<div class="doc_code">
640<pre>
641; CHECK: movhpd <b>{{[0-9]+}}</b>(%esp), <b>{{%xmm[0-7]}}</b>
642</pre>
643</div>
644
645<p>In this case, any offset from the ESP register will be allowed, and any xmm
646register will be allowed.</p>
647
648<p>Because regular expressions are enclosed with double braces, they are
649visually distinct, and you don't need to use escape characters within the double
650braces like you would in C. In the rare case that you want to match double
651braces explicitly from the input, you can use something ugly like
652<b>{{[{][{]}}</b> as your pattern.</p>
653
Daniel Dunbar21e993c2012-04-19 16:31:37 +0000654<!-- {% endraw %} -->
655
Chris Lattner52870082009-09-24 21:47:32 +0000656</div>
657
Chris Lattnereec96952009-09-27 07:56:52 +0000658<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000659<h4>
660 <a name="FileCheck-Variables">FileCheck Variables</a>
661</h4>
Chris Lattner52870082009-09-24 21:47:32 +0000662
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000663<div>
Chris Lattnereec96952009-09-27 07:56:52 +0000664
Daniel Dunbar21e993c2012-04-19 16:31:37 +0000665
666<!-- {% raw %} -->
667
Chris Lattnereec96952009-09-27 07:56:52 +0000668<p>It is often useful to match a pattern and then verify that it occurs again
669later in the file. For codegen tests, this can be useful to allow any register,
670but verify that that register is used consistently later. To do this, FileCheck
671allows named variables to be defined and substituted into patterns. Here is a
672simple example:</p>
673
674<div class="doc_code">
675<pre>
676; CHECK: test5:
Chris Lattner9217f6b2009-09-27 08:01:44 +0000677; CHECK: notw <b>[[REGISTER:%[a-z]+]]</b>
678; CHECK: andw {{.*}}<b>[[REGISTER]]</b>
Chris Lattnereec96952009-09-27 07:56:52 +0000679</pre>
680</div>
681
Chris Lattner9217f6b2009-09-27 08:01:44 +0000682<p>The first check line matches a regex (<tt>%[a-z]+</tt>) and captures it into
683the variables "REGISTER". The second line verifies that whatever is in REGISTER
684occurs later in the file after an "andw". FileCheck variable references are
685always contained in <tt>[[ ]]</tt> pairs, are named, and their names can be
686formed with the regex "<tt>[a-zA-Z][a-zA-Z0-9]*</tt>". If a colon follows the
687name, then it is a definition of the variable, if not, it is a use.</p>
Chris Lattnereec96952009-09-27 07:56:52 +0000688
689<p>FileCheck variables can be defined multiple times, and uses always get the
690latest value. Note that variables are all read at the start of a "CHECK" line
691and are all defined at the end. This means that if you have something like
692"<tt>CHECK: [[XYZ:.*]]x[[XYZ]]</tt>" that the check line will read the previous
693value of the XYZ variable and define a new one after the match is performed. If
694you need to do something like this you can probably take advantage of the fact
695that FileCheck is not actually line-oriented when it matches, this allows you to
696define two separate CHECK lines that match on the same line.
697</p>
698
Daniel Dunbar21e993c2012-04-19 16:31:37 +0000699<!-- {% endraw %} -->
700
Chris Lattnereec96952009-09-27 07:56:52 +0000701</div>
Chris Lattner52870082009-09-24 21:47:32 +0000702
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000703</div>
704
Chris Lattner52870082009-09-24 21:47:32 +0000705<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000706<h3><a name="rtvars">Variables and substitutions</a></h3>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000707<!-- _______________________________________________________________________ -->
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000708<div>
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000709 <p>With a RUN line there are a number of substitutions that are permitted. In
710 general, any Tcl variable that is available in the <tt>substitute</tt>
711 function (in <tt>test/lib/llvm.exp</tt>) can be substituted into a RUN line.
712 To make a substitution just write the variable's name preceded by a $.
713 Additionally, for compatibility reasons with previous versions of the test
714 library, certain names can be accessed with an alternate syntax: a % prefix.
715 These alternates are deprecated and may go away in a future version.
716 </p>
Bill Wendlingeb6aace2007-09-22 09:20:07 +0000717 <p>Here are the available variable names. The alternate syntax is listed in
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000718 parentheses.</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000719
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000720 <dl style="margin-left: 25px">
721 <dt><b>$test</b> (%s)</dt>
722 <dd>The full path to the test case's source. This is suitable for passing
723 on the command line as the input to an llvm tool.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000724
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000725 <dt><b>$srcdir</b></dt>
726 <dd>The source directory from where the "<tt>make check</tt>" was run.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000727
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000728 <dt><b>objdir</b></dt>
Bill Wendlingeb6aace2007-09-22 09:20:07 +0000729 <dd>The object directory that corresponds to the <tt>$srcdir</tt>.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000730
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000731 <dt><b>subdir</b></dt>
732 <dd>A partial path from the <tt>test</tt> directory that contains the
733 sub-directory that contains the test source being executed.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000734
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000735 <dt><b>srcroot</b></dt>
736 <dd>The root directory of the LLVM src tree.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000737
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000738 <dt><b>objroot</b></dt>
739 <dd>The root directory of the LLVM object tree. This could be the same
740 as the srcroot.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000741
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000742 <dt><b>path</b><dt>
743 <dd>The path to the directory that contains the test case source. This is
744 for locating any supporting files that are not generated by the test, but
745 used by the test.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000746
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000747 <dt><b>tmp</b></dt>
748 <dd>The path to a temporary file name that could be used for this test case.
749 The file name won't conflict with other test cases. You can append to it if
750 you need multiple temporaries. This is useful as the destination of some
751 redirected output.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000752
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000753 <dt><b>target_triplet</b> (%target_triplet)</dt>
754 <dd>The target triplet that corresponds to the current host machine (the one
755 running the test cases). This should probably be called "host".<dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000756
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000757 <dt><b>link</b> (%link)</dt>
758 <dd>This full link command used to link LLVM executables. This has all the
759 configured -I, -L and -l options.</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000760
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000761 <dt><b>shlibext</b> (%shlibext)</dt>
762 <dd>The suffix for the host platforms share library (dll) files. This
763 includes the period as the first character.</dd>
764 </dl>
765 <p>To add more variables, two things need to be changed. First, add a line in
766 the <tt>test/Makefile</tt> that creates the <tt>site.exp</tt> file. This will
767 "set" the variable as a global in the site.exp file. Second, in the
768 <tt>test/lib/llvm.exp</tt> file, in the substitute proc, add the variable name
769 to the list of "global" declarations at the beginning of the proc. That's it,
770 the variable can then be used in test scripts.</p>
771</div>
772
773<!-- _______________________________________________________________________ -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000774<h3><a name="rtfeatures">Other Features</a></h3>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000775<!-- _______________________________________________________________________ -->
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000776<div>
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000777 <p>To make RUN line writing easier, there are several shell scripts located
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000778 in the <tt>llvm/test/Scripts</tt> directory. This directory is in the PATH
779 when running tests, so you can just call these scripts using their name. For
780 example:</p>
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000781 <dl>
782 <dt><b>ignore</b></dt>
783 <dd>This script runs its arguments and then always returns 0. This is useful
784 in cases where the test needs to cause a tool to generate an error (e.g. to
785 check the error output). However, any program in a pipeline that returns a
786 non-zero result will cause the test to fail. This script overcomes that
787 issue and nicely documents that the test case is purposefully ignoring the
788 result code of the tool</dd>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000789
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000790 <dt><b>not</b></dt>
791 <dd>This script runs its arguments and then inverts the result code from
792 it. Zero result codes become 1. Non-zero result codes become 0. This is
793 useful to invert the result of a grep. For example "not grep X" means
794 succeed only if you don't find X in the input.</dd>
795 </dl>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000796
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000797 <p>Sometimes it is necessary to mark a test case as "expected fail" or XFAIL.
Daniel Dunbar3d4d01b2010-02-23 07:56:28 +0000798 You can easily mark a test as XFAIL just by including <tt>XFAIL: </tt> on a
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000799 line near the top of the file. This signals that the test case should succeed
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000800 if the test fails. Such test cases are counted separately by the testing tool. To
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000801 specify an expected fail, use the XFAIL keyword in the comments of the test
802 program followed by a colon and one or more regular expressions (separated by
Daniel Dunbar3d4d01b2010-02-23 07:56:28 +0000803 a comma). The regular expressions allow you to XFAIL the test conditionally by
804 host platform. The regular expressions following the : are matched against the
805 target triplet for the host machine. If there is a match, the test is expected
806 to fail. If not, the test is expected to succeed. To XFAIL everywhere just
807 specify <tt>XFAIL: *</tt>. Here is an example of an <tt>XFAIL</tt> line:</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000808
809<div class="doc_code">
810<pre>
Daniel Dunbar3d4d01b2010-02-23 07:56:28 +0000811; XFAIL: darwin,sun
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000812</pre>
813</div>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000814
Reid Spencerbbb2a7a2007-04-14 21:46:15 +0000815 <p>Finally, any line that contains "END." will cause the special
816 interpretation of lines to terminate. This is generally done right after the
817 last RUN: line. This has two side effects: (a) it prevents special
818 interpretation of lines that are part of the test program, not the
819 instructions to the test case, and (b) it speeds things up for really big test
820 cases by avoiding interpretation of the remainder of the file.</p>
Tanya Lattner5026c7f2004-12-06 02:11:52 +0000821
822</div>
John Criswell020cbd82003-10-10 18:42:49 +0000823
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000824</div>
825
Reid Spencer8284f1f2004-09-05 20:07:26 +0000826<!--=========================================================================-->
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000827<h2><a name="testsuiteoverview"><tt>test-suite</tt> Overview</a></h2>
Reid Spencer8284f1f2004-09-05 20:07:26 +0000828<!--=========================================================================-->
John Criswell020cbd82003-10-10 18:42:49 +0000829
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000830<div>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +0000831
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000832<p>The <tt>test-suite</tt> module contains a number of programs that can be
833compiled and executed. The <tt>test-suite</tt> includes reference outputs for
834all of the programs, so that the output of the executed program can be checked
835for correctness.</p>
Misha Brukman1d83e112004-03-01 18:21:04 +0000836
Andrew Trickbcf01162010-09-23 20:26:44 +0000837<p><tt>test-suite</tt> tests are divided into three types of tests: MultiSource,
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000838SingleSource, and External.</p>
Reid Spencer3281ead2004-12-08 16:52:51 +0000839
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000840<ul>
Andrew Trickbcf01162010-09-23 20:26:44 +0000841<li><tt>test-suite/SingleSource</tt>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000842<p>The SingleSource directory contains test programs that are only a single
843source file in size. These are usually small benchmark programs or small
844programs that calculate a particular value. Several such programs are grouped
845together in each directory.</p></li>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000846
Andrew Trickbcf01162010-09-23 20:26:44 +0000847<li><tt>test-suite/MultiSource</tt>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000848<p>The MultiSource directory contains subdirectories which contain entire
849programs with multiple source files. Large benchmarks and whole applications
850go here.</p></li>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000851
Andrew Trickbcf01162010-09-23 20:26:44 +0000852<li><tt>test-suite/External</tt>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000853<p>The External directory contains Makefiles for building code that is external
854to (i.e., not distributed with) LLVM. The most prominent members of this
855directory are the SPEC 95 and SPEC 2000 benchmark suites. The <tt>External</tt>
Stuart Hastingsc4c268b2009-05-21 20:23:59 +0000856directory does not contain these actual tests, but only the Makefiles that know
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000857how to properly compile these programs from somewhere else. When
858using <tt>LNT</tt>, use the <tt>--test-externals</tt> option to include these
859tests in the results.</p></li>
Matthijs Kooijman6fce8442008-05-23 11:45:18 +0000860</ul>
Misha Brukman1d83e112004-03-01 18:21:04 +0000861</div>
862
Reid Spencer8284f1f2004-09-05 20:07:26 +0000863<!--=========================================================================-->
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000864<h2><a name="testsuitequickstart"><tt>test-suite</tt> Quickstart</a></h2>
Reid Spencer8284f1f2004-09-05 20:07:26 +0000865<!--=========================================================================-->
Misha Brukman1d83e112004-03-01 18:21:04 +0000866
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000867<div>
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000868<p>The modern way of running the <tt>test-suite</tt> is focused on testing and
869benchmarking complete compilers using
870the <a href="http://llvm.org/docs/lnt">LNT</a> testing infrastructure.</p>
Misha Brukman1d83e112004-03-01 18:21:04 +0000871
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000872<p>For more information on using LNT to execute the <tt>test-suite</tt>, please
873see the <a href="http://llvm.org/docs/lnt/quickstart.html">LNT Quickstart</a>
874documentation.</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000875</div>
Matthijs Kooijmand30020a2008-05-20 10:28:55 +0000876
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000877<!--=========================================================================-->
878<h2><a name="testsuitemakefiles"><tt>test-suite</tt> Makefiles</a></h2>
879<!--=========================================================================-->
Misha Brukman1d83e112004-03-01 18:21:04 +0000880
NAKAMURA Takumif5af6ad2011-04-23 00:30:22 +0000881<div>
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000882<p>Historically, the <tt>test-suite</tt> was executed using a complicated setup
883of Makefiles. The LNT based approach above is recommended for most users, but
884there are some testing scenarios which are not supported by the LNT approach. In
885addition, LNT currently uses the Makefile setup under the covers and so
886developers who are interested in how LNT works under the hood may want to
887understand the Makefile based setup.</p>
Bill Wendlingda51c4c2007-09-22 09:16:44 +0000888
Daniel Dunbar90d9e022012-03-15 22:19:35 +0000889<p>For more information on the <tt>test-suite</tt> Makefile setup, please see
890the <a href="TestSuiteMakefileGuide.html">Test Suite Makefile Guide.</a></p>
Chris Lattnereb82da82006-05-23 01:40:20 +0000891</div>
892
Brian Gaekeaf19f2e2003-10-23 18:10:28 +0000893<!-- *********************************************************************** -->
John Criswell020cbd82003-10-10 18:42:49 +0000894
Misha Brukman1d83e112004-03-01 18:21:04 +0000895<hr>
896<address>
897 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
Misha Brukman44408702008-12-11 17:34:48 +0000898 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
Misha Brukman1d83e112004-03-01 18:21:04 +0000899 <a href="http://validator.w3.org/check/referer"><img
Misha Brukman44408702008-12-11 17:34:48 +0000900 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +0000901
Daniel Dunbarcd3b1172010-08-02 01:20:23 +0000902 John T. Criswell, Daniel Dunbar, Reid Spencer, and Tanya Lattner<br>
NAKAMURA Takumib9a33632011-04-09 02:13:37 +0000903 <a href="http://llvm.org/">The LLVM Compiler Infrastructure</a><br>
Misha Brukman1d83e112004-03-01 18:21:04 +0000904 Last modified: $Date$
905</address>
Brian Gaekeaf19f2e2003-10-23 18:10:28 +0000906</body>
John Criswell020cbd82003-10-10 18:42:49 +0000907</html>