File: TestingGuide.html

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-6~deb10u4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,418,792 kB
  • sloc: cpp: 5,290,827; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,900; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,892; xml: 953; cs: 573; fortran: 539
file content (720 lines) | stat: -rw-r--r-- 52,552 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720


<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>LLVM Testing Infrastructure Guide &#8212; LLVM 13 documentation</title>
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <link rel="stylesheet" href="_static/llvm-theme.css" type="text/css" />
    <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
    <script src="_static/jquery.js"></script>
    <script src="_static/underscore.js"></script>
    <script src="_static/doctools.js"></script>
    <link rel="index" title="Index" href="genindex.html" />
    <link rel="search" title="Search" href="search.html" />
    <link rel="next" title="test-suite Guide" href="TestSuiteGuide.html" />
    <link rel="prev" title="System Library" href="SystemLibrary.html" />
<style type="text/css">
  table.right { float: right; margin-left: 20px; }
  table.right td { border: 1px solid #ccc; }
</style>

  </head><body>
<div class="logo">
  <a href="index.html">
    <img src="_static/logo.png"
         alt="LLVM Logo" width="250" height="88"/></a>
</div>

    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="TestSuiteGuide.html" title="test-suite Guide"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="SystemLibrary.html" title="System Library"
             accesskey="P">previous</a> |</li>
  <li><a href="https://llvm.org/">LLVM Home</a>&nbsp;|&nbsp;</li>
  <li><a href="index.html">Documentation</a>&raquo;</li>

          <li class="nav-item nav-item-1"><a href="Reference.html" accesskey="U">Reference</a> &#187;</li>
        <li class="nav-item nav-item-this"><a href="">LLVM Testing Infrastructure Guide</a></li> 
      </ul>
    </div>

      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">

<h3>Documentation</h3>

<ul class="want-points">
    <li><a href="https://llvm.org/docs/GettingStartedTutorials.html">Getting Started/Tutorials</a></li>
    <li><a href="https://llvm.org/docs/UserGuides.html">User Guides</a></li>
    <li><a href="https://llvm.org/docs/Reference.html">Reference</a></li>
</ul>

<h3>Getting Involved</h3>

<ul class="want-points">
    <li><a href="https://llvm.org/docs/Contributing.html">Contributing to LLVM</a></li>
    <li><a href="https://llvm.org/docs/HowToSubmitABug.html">Submitting Bug Reports</a></li>
    <li><a href="https://llvm.org/docs/GettingInvolved.html#mailing-lists">Mailing Lists</a></li>
    <li><a href="https://llvm.org/docs/GettingInvolved.html#irc">IRC</a></li>
    <li><a href="https://llvm.org/docs/GettingInvolved.html#meetups-and-social-events">Meetups and Social Events</a></li>
</ul>

<h3>Additional Links</h3>

<ul class="want-points">
    <li><a href="https://llvm.org/docs/FAQ.html">FAQ</a></li>
    <li><a href="https://llvm.org/docs/Lexicon.html">Glossary</a></li>
    <li><a href="https://llvm.org/pubs">Publications</a></li>
    <li><a href="https://github.com/llvm/llvm-project//">Github Repository</a></li>
</ul>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="_sources/TestingGuide.rst.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3 id="searchlabel">Quick search</h3>
    <div class="searchformwrapper">
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" aria-labelledby="searchlabel" />
      <input type="submit" value="Go" />
    </form>
    </div>
</div>
<script>$('#searchbox').show(0);</script>
        </div>
      </div>

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="llvm-testing-infrastructure-guide">
<h1>LLVM Testing Infrastructure Guide<a class="headerlink" href="#llvm-testing-infrastructure-guide" title="Permalink to this headline">¶</a></h1>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><p><a class="reference internal" href="#overview" id="id2">Overview</a></p></li>
<li><p><a class="reference internal" href="#requirements" id="id3">Requirements</a></p></li>
<li><p><a class="reference internal" href="#llvm-testing-infrastructure-organization" id="id4">LLVM Testing Infrastructure Organization</a></p>
<ul>
<li><p><a class="reference internal" href="#unit-tests" id="id5">Unit tests</a></p></li>
<li><p><a class="reference internal" href="#regression-tests" id="id6">Regression tests</a></p></li>
<li><p><a class="reference internal" href="#testing-analysis" id="id7">Testing Analysis</a></p></li>
<li><p><a class="reference internal" href="#test-suite" id="id8"><code class="docutils literal notranslate"><span class="pre">test-suite</span></code></a></p></li>
<li><p><a class="reference internal" href="#debugging-information-tests" id="id9">Debugging Information tests</a></p></li>
</ul>
</li>
<li><p><a class="reference internal" href="#quick-start" id="id10">Quick start</a></p>
<ul>
<li><p><a class="reference internal" href="#unit-and-regression-tests" id="id11">Unit and Regression tests</a></p></li>
<li><p><a class="reference internal" href="#id1" id="id12">Debugging Information tests</a></p></li>
</ul>
</li>
<li><p><a class="reference internal" href="#regression-test-structure" id="id13">Regression test structure</a></p>
<ul>
<li><p><a class="reference internal" href="#writing-new-regression-tests" id="id14">Writing new regression tests</a></p></li>
<li><p><a class="reference internal" href="#extra-files" id="id15">Extra files</a></p></li>
<li><p><a class="reference internal" href="#fragile-tests" id="id16">Fragile tests</a></p></li>
<li><p><a class="reference internal" href="#platform-specific-tests" id="id17">Platform-Specific Tests</a></p></li>
<li><p><a class="reference internal" href="#constraining-test-execution" id="id18">Constraining test execution</a></p></li>
<li><p><a class="reference internal" href="#substitutions" id="id19">Substitutions</a></p></li>
<li><p><a class="reference internal" href="#options" id="id20">Options</a></p></li>
<li><p><a class="reference internal" href="#other-features" id="id21">Other Features</a></p></li>
</ul>
</li>
</ul>
</div>
<div class="toctree-wrapper compound">
</div>
<div class="section" id="overview">
<h2><a class="toc-backref" href="#id2">Overview</a><a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2>
<p>This document is the reference manual for the LLVM testing
infrastructure. It documents the structure of the LLVM testing
infrastructure, the tools needed to use it, and how to add and run
tests.</p>
</div>
<div class="section" id="requirements">
<h2><a class="toc-backref" href="#id3">Requirements</a><a class="headerlink" href="#requirements" title="Permalink to this headline">¶</a></h2>
<p>In order to use the LLVM testing infrastructure, you will need all of the
software required to build LLVM, as well as <a class="reference external" href="http://python.org">Python</a> 3.6 or
later.</p>
</div>
<div class="section" id="llvm-testing-infrastructure-organization">
<h2><a class="toc-backref" href="#id4">LLVM Testing Infrastructure Organization</a><a class="headerlink" href="#llvm-testing-infrastructure-organization" title="Permalink to this headline">¶</a></h2>
<p>The LLVM testing infrastructure contains three major categories of tests:
unit tests, regression tests and whole programs. The unit tests and regression
tests are contained inside the LLVM repository itself under <code class="docutils literal notranslate"><span class="pre">llvm/unittests</span></code>
and <code class="docutils literal notranslate"><span class="pre">llvm/test</span></code> respectively and are expected to always pass – they should be
run before every commit.</p>
<p>The whole programs tests are referred to as the “LLVM test suite” (or
“test-suite”) and are in the <code class="docutils literal notranslate"><span class="pre">test-suite</span></code> module in subversion. For
historical reasons, these tests are also referred to as the “nightly
tests” in places, which is less ambiguous than “test-suite” and remains
in use although we run them much more often than nightly.</p>
<div class="section" id="unit-tests">
<h3><a class="toc-backref" href="#id5">Unit tests</a><a class="headerlink" href="#unit-tests" title="Permalink to this headline">¶</a></h3>
<p>Unit tests are written using <a class="reference external" href="https://github.com/google/googletest/blob/master/docs/primer.md">Google Test</a>
and <a class="reference external" href="https://github.com/google/googletest/blob/master/docs/gmock_for_dummies.md">Google Mock</a>
and are located in the <code class="docutils literal notranslate"><span class="pre">llvm/unittests</span></code> directory.
In general unit tests are reserved for targeting the support library and other
generic data structure, we prefer relying on regression tests for testing
transformations and analysis on the IR.</p>
</div>
<div class="section" id="regression-tests">
<h3><a class="toc-backref" href="#id6">Regression tests</a><a class="headerlink" href="#regression-tests" title="Permalink to this headline">¶</a></h3>
<p>The regression tests are small pieces of code that test a specific
feature of LLVM or trigger a specific bug in LLVM. The language they are
written in depends on the part of LLVM being tested. These tests are driven by
the <a class="reference internal" href="CommandGuide/lit.html"><span class="doc">Lit</span></a> testing tool (which is part of LLVM), and
are located in the <code class="docutils literal notranslate"><span class="pre">llvm/test</span></code> directory.</p>
<p>Typically when a bug is found in LLVM, a regression test containing just
enough code to reproduce the problem should be written and placed
somewhere underneath this directory. For example, it can be a small
piece of LLVM IR distilled from an actual application or benchmark.</p>
</div>
<div class="section" id="testing-analysis">
<h3><a class="toc-backref" href="#id7">Testing Analysis</a><a class="headerlink" href="#testing-analysis" title="Permalink to this headline">¶</a></h3>
<p>An analysis is a pass that infer properties on some part of the IR and not
transforming it. They are tested in general using the same infrastructure as the
regression tests, by creating a separate “Printer” pass to consume the analysis
result and print it on the standard output in a textual format suitable for
FileCheck.
See <a class="reference external" href="https://github.com/llvm/llvm-project/blob/main/llvm/test/Analysis/BranchProbabilityInfo/loop.ll">llvm/test/Analysis/BranchProbabilityInfo/loop.ll</a>
for an example of such test.</p>
</div>
<div class="section" id="test-suite">
<h3><a class="toc-backref" href="#id8"><code class="docutils literal notranslate"><span class="pre">test-suite</span></code></a><a class="headerlink" href="#test-suite" title="Permalink to this headline">¶</a></h3>
<p>The test suite contains whole programs, which are pieces of code which
can be compiled and linked into a stand-alone program that can be
executed. These programs are generally written in high level languages
such as C or C++.</p>
<p>These programs are compiled using a user specified compiler and set of
flags, and then executed to capture the program output and timing
information. The output of these programs is compared to a reference
output to ensure that the program is being compiled correctly.</p>
<p>In addition to compiling and executing programs, whole program tests
serve as a way of benchmarking LLVM performance, both in terms of the
efficiency of the programs generated as well as the speed with which
LLVM compiles, optimizes, and generates code.</p>
<p>The test-suite is located in the <code class="docutils literal notranslate"><span class="pre">test-suite</span></code> Subversion module.</p>
<p>See the <a class="reference internal" href="TestSuiteGuide.html"><span class="doc">test-suite Guide</span></a> for details.</p>
</div>
<div class="section" id="debugging-information-tests">
<h3><a class="toc-backref" href="#id9">Debugging Information tests</a><a class="headerlink" href="#debugging-information-tests" title="Permalink to this headline">¶</a></h3>
<p>The test suite contains tests to check quality of debugging information.
The test are written in C based languages or in LLVM assembly language.</p>
<p>These tests are compiled and run under a debugger. The debugger output
is checked to validate of debugging information. See README.txt in the
test suite for more information. This test suite is located in the
<code class="docutils literal notranslate"><span class="pre">cross-project-tests/debuginfo-tests</span></code> directory.</p>
</div>
</div>
<div class="section" id="quick-start">
<h2><a class="toc-backref" href="#id10">Quick start</a><a class="headerlink" href="#quick-start" title="Permalink to this headline">¶</a></h2>
<p>The tests are located in two separate Subversion modules. The unit and
regression tests are in the main “llvm” module under the directories
<code class="docutils literal notranslate"><span class="pre">llvm/unittests</span></code> and <code class="docutils literal notranslate"><span class="pre">llvm/test</span></code> (so you get these tests for free with the
main LLVM tree). Use <code class="docutils literal notranslate"><span class="pre">make</span> <span class="pre">check-all</span></code> to run the unit and regression tests
after building LLVM.</p>
<p>The <code class="docutils literal notranslate"><span class="pre">test-suite</span></code> module contains more comprehensive tests including whole C
and C++ programs. See the <a class="reference internal" href="TestSuiteGuide.html"><span class="doc">test-suite Guide</span></a> for details.</p>
<div class="section" id="unit-and-regression-tests">
<h3><a class="toc-backref" href="#id11">Unit and Regression tests</a><a class="headerlink" href="#unit-and-regression-tests" title="Permalink to this headline">¶</a></h3>
<p>To run all of the LLVM unit tests use the check-llvm-unit target:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% make check-llvm-unit
</pre></div>
</div>
<p>To run all of the LLVM regression tests use the check-llvm target:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% make check-llvm
</pre></div>
</div>
<p>In order to get reasonable testing performance, build LLVM and subprojects
in release mode, i.e.</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% cmake -DCMAKE_BUILD_TYPE<span class="o">=</span><span class="s2">&quot;Release&quot;</span> -DLLVM_ENABLE_ASSERTIONS<span class="o">=</span>On
</pre></div>
</div>
<p>If you have <a class="reference external" href="https://clang.llvm.org/">Clang</a> checked out and built, you
can run the LLVM and Clang tests simultaneously using:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% make check-all
</pre></div>
</div>
<p>To run the tests with Valgrind (Memcheck by default), use the <code class="docutils literal notranslate"><span class="pre">LIT_ARGS</span></code> make
variable to pass the required options to lit. For example, you can use:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% make check <span class="nv">LIT_ARGS</span><span class="o">=</span><span class="s2">&quot;-v --vg --vg-leak&quot;</span>
</pre></div>
</div>
<p>to enable testing with valgrind and with leak checking enabled.</p>
<p>To run individual tests or subsets of tests, you can use the <code class="docutils literal notranslate"><span class="pre">llvm-lit</span></code>
script which is built as part of LLVM. For example, to run the
<code class="docutils literal notranslate"><span class="pre">Integer/BitPacked.ll</span></code> test by itself you can run:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% llvm-lit ~/llvm/test/Integer/BitPacked.ll
</pre></div>
</div>
<p>or to run all of the ARM CodeGen tests:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% llvm-lit ~/llvm/test/CodeGen/ARM
</pre></div>
</div>
<p>The regression tests will use the Python psutil module only if installed in a
<strong>non-user</strong> location. Under Linux, install with sudo or within a virtual
environment. Under Windows, install Python for all users and then run
<code class="docutils literal notranslate"><span class="pre">pip</span> <span class="pre">install</span> <span class="pre">psutil</span></code> in an elevated command prompt.</p>
<p>For more information on using the <strong class="program">lit</strong> tool, see <code class="docutils literal notranslate"><span class="pre">llvm-lit</span> <span class="pre">--help</span></code>
or the <a class="reference internal" href="CommandGuide/lit.html"><span class="doc">lit man page</span></a>.</p>
</div>
<div class="section" id="id1">
<h3><a class="toc-backref" href="#id12">Debugging Information tests</a><a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
<p>To run debugging information tests simply add the <code class="docutils literal notranslate"><span class="pre">debuginfo-tests</span></code>
project to your <code class="docutils literal notranslate"><span class="pre">LLVM_ENABLE_PROJECTS</span></code> define on the cmake
command-line.</p>
</div>
</div>
<div class="section" id="regression-test-structure">
<h2><a class="toc-backref" href="#id13">Regression test structure</a><a class="headerlink" href="#regression-test-structure" title="Permalink to this headline">¶</a></h2>
<p>The LLVM regression tests are driven by <strong class="program">lit</strong> and are located in the
<code class="docutils literal notranslate"><span class="pre">llvm/test</span></code> directory.</p>
<p>This directory contains a large array of small tests that exercise
various features of LLVM and to ensure that regressions do not occur.
The directory is broken into several sub-directories, each focused on a
particular area of LLVM.</p>
<div class="section" id="writing-new-regression-tests">
<h3><a class="toc-backref" href="#id14">Writing new regression tests</a><a class="headerlink" href="#writing-new-regression-tests" title="Permalink to this headline">¶</a></h3>
<p>The regression test structure is very simple, but does require some
information to be set. This information is gathered via <code class="docutils literal notranslate"><span class="pre">cmake</span></code>
and is written to a file, <code class="docutils literal notranslate"><span class="pre">test/lit.site.cfg</span></code> in the build directory.
The <code class="docutils literal notranslate"><span class="pre">llvm/test</span></code> Makefile does this work for you.</p>
<p>In order for the regression tests to work, each directory of tests must
have a <code class="docutils literal notranslate"><span class="pre">lit.local.cfg</span></code> file. <strong class="program">lit</strong> looks for this file to determine
how to run the tests. This file is just Python code and thus is very
flexible, but we’ve standardized it for the LLVM regression tests. If
you’re adding a directory of tests, just copy <code class="docutils literal notranslate"><span class="pre">lit.local.cfg</span></code> from
another directory to get running. The standard <code class="docutils literal notranslate"><span class="pre">lit.local.cfg</span></code> simply
specifies which files to look in for tests. Any directory that contains
only directories does not need the <code class="docutils literal notranslate"><span class="pre">lit.local.cfg</span></code> file. Read the <a class="reference internal" href="CommandGuide/lit.html"><span class="doc">Lit
documentation</span></a> for more information.</p>
<p>Each test file must contain lines starting with “RUN:” that tell <strong class="program">lit</strong>
how to run it. If there are no RUN lines, <strong class="program">lit</strong> will issue an error
while running a test.</p>
<p>RUN lines are specified in the comments of the test program using the
keyword <code class="docutils literal notranslate"><span class="pre">RUN</span></code> followed by a colon, and lastly the command (pipeline)
to execute. Together, these lines form the “script” that <strong class="program">lit</strong>
executes to run the test case. The syntax of the RUN lines is similar to a
shell’s syntax for pipelines including I/O redirection and variable
substitution. However, even though these lines may <em>look</em> like a shell
script, they are not. RUN lines are interpreted by <strong class="program">lit</strong>.
Consequently, the syntax differs from shell in a few ways. You can specify
as many RUN lines as needed.</p>
<p><strong class="program">lit</strong> performs substitution on each RUN line to replace LLVM tool names
with the full paths to the executable built for each tool (in
<code class="docutils literal notranslate"><span class="pre">$(LLVM_OBJ_ROOT)/$(BuildMode)/bin)</span></code>. This ensures that <strong class="program">lit</strong> does
not invoke any stray LLVM tools in the user’s path during testing.</p>
<p>Each RUN line is executed on its own, distinct from other lines unless
its last character is <code class="docutils literal notranslate"><span class="pre">\</span></code>. This continuation character causes the RUN
line to be concatenated with the next one. In this way you can build up
long pipelines of commands without making huge line lengths. The lines
ending in <code class="docutils literal notranslate"><span class="pre">\</span></code> are concatenated until a RUN line that doesn’t end in
<code class="docutils literal notranslate"><span class="pre">\</span></code> is found. This concatenated set of RUN lines then constitutes one
execution. <strong class="program">lit</strong> will substitute variables and arrange for the pipeline
to be executed. If any process in the pipeline fails, the entire line (and
test case) fails too.</p>
<p>Below is an example of legal RUN lines in a <code class="docutils literal notranslate"><span class="pre">.ll</span></code> file:</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">; RUN: llvm-as &lt; %s | llvm-dis &gt; %t1</span>
<span class="c">; RUN: llvm-dis &lt; %s.bc-13 &gt; %t2</span>
<span class="c">; RUN: diff %t1 %t2</span>
</pre></div>
</div>
<p>As with a Unix shell, the RUN lines permit pipelines and I/O
redirection to be used.</p>
<p>There are some quoting rules that you must pay attention to when writing
your RUN lines. In general nothing needs to be quoted. <strong class="program">lit</strong> won’t
strip off any quote characters so they will get passed to the invoked program.
To avoid this use curly braces to tell <strong class="program">lit</strong> that it should treat
everything enclosed as one value.</p>
<p>In general, you should strive to keep your RUN lines as simple as possible,
using them only to run tools that generate textual output you can then examine.
The recommended way to examine output to figure out if the test passes is using
the <a class="reference internal" href="CommandGuide/FileCheck.html"><span class="doc">FileCheck tool</span></a>. <em>[The usage of grep in RUN
lines is deprecated - please do not send or commit patches that use it.]</em></p>
<p>Put related tests into a single file rather than having a separate file per
test. Check if there are files already covering your feature and consider
adding your code there instead of creating a new file.</p>
</div>
<div class="section" id="extra-files">
<h3><a class="toc-backref" href="#id15">Extra files</a><a class="headerlink" href="#extra-files" title="Permalink to this headline">¶</a></h3>
<p>If your test requires extra files besides the file containing the <code class="docutils literal notranslate"><span class="pre">RUN:</span></code> lines
and the extra files are small, consider specifying them in the same file and
using <code class="docutils literal notranslate"><span class="pre">split-file</span></code> to extract them. For example,</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">; RUN: split-file %s %t</span>
<span class="c">; RUN: llvm-link -S %t/a.ll %t/b.ll | FileCheck %s</span>

<span class="c">; CHECK: ...</span>

<span class="c">;--- a.ll</span>
<span class="p">...</span>
<span class="c">;--- b.ll</span>
<span class="p">...</span>
</pre></div>
</div>
<p>The parts are separated by the regex <code class="docutils literal notranslate"><span class="pre">^(.|//)---</span> <span class="pre">&lt;part&gt;</span></code>. By default the
extracted content has leading empty lines to preserve line numbers. Specify
<code class="docutils literal notranslate"><span class="pre">--no-leading-lines</span></code> to drop leading lines.</p>
<p>If the extra files are large, the idiomatic place to put them is in a subdirectory <code class="docutils literal notranslate"><span class="pre">Inputs</span></code>.
You can then refer to the extra files as <code class="docutils literal notranslate"><span class="pre">%S/Inputs/foo.bar</span></code>.</p>
<p>For example, consider <code class="docutils literal notranslate"><span class="pre">test/Linker/ident.ll</span></code>. The directory structure is
as follows:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">test</span><span class="o">/</span>
  <span class="n">Linker</span><span class="o">/</span>
    <span class="n">ident</span><span class="o">.</span><span class="n">ll</span>
    <span class="n">Inputs</span><span class="o">/</span>
      <span class="n">ident</span><span class="o">.</span><span class="n">a</span><span class="o">.</span><span class="n">ll</span>
      <span class="n">ident</span><span class="o">.</span><span class="n">b</span><span class="o">.</span><span class="n">ll</span>
</pre></div>
</div>
<p>For convenience, these are the contents:</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">;;;;; ident.ll:</span>

<span class="c">; RUN: llvm-link %S/Inputs/ident.a.ll %S/Inputs/ident.b.ll -S | FileCheck %s</span>

<span class="c">; Verify that multiple input llvm.ident metadata are linked together.</span>

<span class="c">; CHECK-DAG: !llvm.ident = !{!0, !1, !2}</span>
<span class="c">; CHECK-DAG: &quot;Compiler V1&quot;</span>
<span class="c">; CHECK-DAG: &quot;Compiler V2&quot;</span>
<span class="c">; CHECK-DAG: &quot;Compiler V3&quot;</span>

<span class="c">;;;;; Inputs/ident.a.ll:</span>

<span class="nv">!llvm.ident</span> <span class="p">=</span> <span class="p">!{</span><span class="nv nv-Anonymous">!0</span><span class="p">,</span> <span class="nv nv-Anonymous">!1</span><span class="p">}</span>
<span class="nv nv-Anonymous">!0</span> <span class="p">=</span> <span class="k">metadata</span> <span class="p">!{</span><span class="k">metadata</span> <span class="nv">!&quot;Compiler V1&quot;</span><span class="p">}</span>
<span class="nv nv-Anonymous">!1</span> <span class="p">=</span> <span class="k">metadata</span> <span class="p">!{</span><span class="k">metadata</span> <span class="nv">!&quot;Compiler V2&quot;</span><span class="p">}</span>

<span class="c">;;;;; Inputs/ident.b.ll:</span>

<span class="nv">!llvm.ident</span> <span class="p">=</span> <span class="p">!{</span><span class="nv nv-Anonymous">!0</span><span class="p">}</span>
<span class="nv nv-Anonymous">!0</span> <span class="p">=</span> <span class="k">metadata</span> <span class="p">!{</span><span class="k">metadata</span> <span class="nv">!&quot;Compiler V3&quot;</span><span class="p">}</span>
</pre></div>
</div>
<p>For symmetry reasons, <code class="docutils literal notranslate"><span class="pre">ident.ll</span></code> is just a dummy file that doesn’t
actually participate in the test besides holding the <code class="docutils literal notranslate"><span class="pre">RUN:</span></code> lines.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>Some existing tests use <code class="docutils literal notranslate"><span class="pre">RUN:</span> <span class="pre">true</span></code> in extra files instead of just
putting the extra files in an <code class="docutils literal notranslate"><span class="pre">Inputs/</span></code> directory. This pattern is
deprecated.</p>
</div>
</div>
<div class="section" id="fragile-tests">
<h3><a class="toc-backref" href="#id16">Fragile tests</a><a class="headerlink" href="#fragile-tests" title="Permalink to this headline">¶</a></h3>
<p>It is easy to write a fragile test that would fail spuriously if the tool being
tested outputs a full path to the input file.  For example, <strong class="program">opt</strong> by
default outputs a <code class="docutils literal notranslate"><span class="pre">ModuleID</span></code>:</p>
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> cat example.ll
<span class="go">define i32 @main() nounwind {</span>
<span class="go">    ret i32 0</span>
<span class="go">}</span>

<span class="gp">$</span> opt -S /path/to/example.ll
<span class="go">; ModuleID = &#39;/path/to/example.ll&#39;</span>

<span class="go">define i32 @main() nounwind {</span>
<span class="go">    ret i32 0</span>
<span class="go">}</span>
</pre></div>
</div>
<p><code class="docutils literal notranslate"><span class="pre">ModuleID</span></code> can unexpectedly match against <code class="docutils literal notranslate"><span class="pre">CHECK</span></code> lines.  For example:</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">; RUN: opt -S %s | FileCheck</span>

<span class="k">define</span> <span class="k">i32</span> <span class="vg">@main</span><span class="p">()</span> <span class="k">nounwind</span> <span class="p">{</span>
    <span class="c">; CHECK-NOT: load</span>
    <span class="k">ret</span> <span class="k">i32</span> <span class="m">0</span>
<span class="p">}</span>
</pre></div>
</div>
<p>This test will fail if placed into a <code class="docutils literal notranslate"><span class="pre">download</span></code> directory.</p>
<p>To make your tests robust, always use <code class="docutils literal notranslate"><span class="pre">opt</span> <span class="pre">...</span> <span class="pre">&lt;</span> <span class="pre">%s</span></code> in the RUN line.
<strong class="program">opt</strong> does not output a <code class="docutils literal notranslate"><span class="pre">ModuleID</span></code> when input comes from stdin.</p>
</div>
<div class="section" id="platform-specific-tests">
<h3><a class="toc-backref" href="#id17">Platform-Specific Tests</a><a class="headerlink" href="#platform-specific-tests" title="Permalink to this headline">¶</a></h3>
<p>Whenever adding tests that require the knowledge of a specific platform,
either related to code generated, specific output or back-end features,
you must make sure to isolate the features, so that buildbots that
run on different architectures (and don’t even compile all back-ends),
don’t fail.</p>
<p>The first problem is to check for target-specific output, for example sizes
of structures, paths and architecture names, for example:</p>
<ul class="simple">
<li><p>Tests containing Windows paths will fail on Linux and vice-versa.</p></li>
<li><p>Tests that check for <code class="docutils literal notranslate"><span class="pre">x86_64</span></code> somewhere in the text will fail anywhere else.</p></li>
<li><p>Tests where the debug information calculates the size of types and structures.</p></li>
</ul>
<p>Also, if the test rely on any behaviour that is coded in any back-end, it must
go in its own directory. So, for instance, code generator tests for ARM go
into <code class="docutils literal notranslate"><span class="pre">test/CodeGen/ARM</span></code> and so on. Those directories contain a special
<code class="docutils literal notranslate"><span class="pre">lit</span></code> configuration file that ensure all tests in that directory will
only run if a specific back-end is compiled and available.</p>
<p>For instance, on <code class="docutils literal notranslate"><span class="pre">test/CodeGen/ARM</span></code>, the <code class="docutils literal notranslate"><span class="pre">lit.local.cfg</span></code> is:</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">config</span><span class="o">.</span><span class="n">suffixes</span> <span class="o">=</span> <span class="p">[</span><span class="s1">&#39;.ll&#39;</span><span class="p">,</span> <span class="s1">&#39;.c&#39;</span><span class="p">,</span> <span class="s1">&#39;.cpp&#39;</span><span class="p">,</span> <span class="s1">&#39;.test&#39;</span><span class="p">]</span>
<span class="k">if</span> <span class="ow">not</span> <span class="s1">&#39;ARM&#39;</span> <span class="ow">in</span> <span class="n">config</span><span class="o">.</span><span class="n">root</span><span class="o">.</span><span class="n">targets</span><span class="p">:</span>
  <span class="n">config</span><span class="o">.</span><span class="n">unsupported</span> <span class="o">=</span> <span class="kc">True</span>
</pre></div>
</div>
<p>Other platform-specific tests are those that depend on a specific feature
of a specific sub-architecture, for example only to Intel chips that support <code class="docutils literal notranslate"><span class="pre">AVX2</span></code>.</p>
<p>For instance, <code class="docutils literal notranslate"><span class="pre">test/CodeGen/X86/psubus.ll</span></code> tests three sub-architecture
variants:</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">; RUN: llc -mcpu=core2 &lt; %s | FileCheck %s -check-prefix=SSE2</span>
<span class="c">; RUN: llc -mcpu=corei7-avx &lt; %s | FileCheck %s -check-prefix=AVX1</span>
<span class="c">; RUN: llc -mcpu=core-avx2 &lt; %s | FileCheck %s -check-prefix=AVX2</span>
</pre></div>
</div>
<p>And the checks are different:</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">; SSE2: @test1</span>
<span class="c">; SSE2: psubusw LCPI0_0(%rip), %xmm0</span>
<span class="c">; AVX1: @test1</span>
<span class="c">; AVX1: vpsubusw LCPI0_0(%rip), %xmm0, %xmm0</span>
<span class="c">; AVX2: @test1</span>
<span class="c">; AVX2: vpsubusw LCPI0_0(%rip), %xmm0, %xmm0</span>
</pre></div>
</div>
<p>So, if you’re testing for a behaviour that you know is platform-specific or
depends on special features of sub-architectures, you must add the specific
triple, test with the specific FileCheck and put it into the specific
directory that will filter out all other architectures.</p>
</div>
<div class="section" id="constraining-test-execution">
<h3><a class="toc-backref" href="#id18">Constraining test execution</a><a class="headerlink" href="#constraining-test-execution" title="Permalink to this headline">¶</a></h3>
<p>Some tests can be run only in specific configurations, such as
with debug builds or on particular platforms. Use <code class="docutils literal notranslate"><span class="pre">REQUIRES</span></code>
and <code class="docutils literal notranslate"><span class="pre">UNSUPPORTED</span></code> to control when the test is enabled.</p>
<p>Some tests are expected to fail. For example, there may be a known bug
that the test detect. Use <code class="docutils literal notranslate"><span class="pre">XFAIL</span></code> to mark a test as an expected failure.
An <code class="docutils literal notranslate"><span class="pre">XFAIL</span></code> test will be successful if its execution fails, and
will be a failure if its execution succeeds.</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">; This test will be only enabled in the build with asserts.</span>
<span class="c">; REQUIRES: asserts</span>
<span class="c">; This test is disabled on Linux.</span>
<span class="c">; UNSUPPORTED: -linux-</span>
<span class="c">; This test is expected to fail on PowerPC.</span>
<span class="c">; XFAIL: powerpc</span>
</pre></div>
</div>
<p><code class="docutils literal notranslate"><span class="pre">REQUIRES</span></code> and <code class="docutils literal notranslate"><span class="pre">UNSUPPORTED</span></code> and <code class="docutils literal notranslate"><span class="pre">XFAIL</span></code> all accept a comma-separated
list of boolean expressions. The values in each expression may be:</p>
<ul class="simple">
<li><p>Features added to <code class="docutils literal notranslate"><span class="pre">config.available_features</span></code> by configuration files such as <code class="docutils literal notranslate"><span class="pre">lit.cfg</span></code>.
String comparison of features is case-sensitive. Furthermore, a boolean expression can
contain any Python regular expression enclosed in <code class="docutils literal notranslate"><span class="pre">{{</span> <span class="pre">}}</span></code>, in which case the boolean
expression is satisfied if any feature matches the regular expression. Regular
expressions can appear inside an identifier, so for example <code class="docutils literal notranslate"><span class="pre">he{{l+}}o</span></code> would match
<code class="docutils literal notranslate"><span class="pre">helo</span></code>, <code class="docutils literal notranslate"><span class="pre">hello</span></code>, <code class="docutils literal notranslate"><span class="pre">helllo</span></code>, and so on.</p></li>
<li><p>Substrings of the target triple (<code class="docutils literal notranslate"><span class="pre">UNSUPPORTED</span></code> and <code class="docutils literal notranslate"><span class="pre">XFAIL</span></code> only).</p></li>
</ul>
<div class="line-block">
<div class="line"><code class="docutils literal notranslate"><span class="pre">REQUIRES</span></code> enables the test if all expressions are true.</div>
<div class="line"><code class="docutils literal notranslate"><span class="pre">UNSUPPORTED</span></code> disables the test if any expression is true.</div>
<div class="line"><code class="docutils literal notranslate"><span class="pre">XFAIL</span></code> expects the test to fail if any expression is true.</div>
</div>
<p>As a special case, <code class="docutils literal notranslate"><span class="pre">XFAIL:</span> <span class="pre">*</span></code> is expected to fail everywhere.</p>
<div class="highlight-llvm notranslate"><div class="highlight"><pre><span></span><span class="c">; This test is disabled on Windows,</span>
<span class="c">; and is disabled on Linux, except for Android Linux.</span>
<span class="c">; UNSUPPORTED: windows, linux &amp;&amp; !android</span>
<span class="c">; This test is expected to fail on both PowerPC and ARM.</span>
<span class="c">; XFAIL: powerpc || arm</span>
</pre></div>
</div>
</div>
<div class="section" id="substitutions">
<h3><a class="toc-backref" href="#id19">Substitutions</a><a class="headerlink" href="#substitutions" title="Permalink to this headline">¶</a></h3>
<p>Besides replacing LLVM tool names the following substitutions are performed in
RUN lines:</p>
<dl>
<dt><code class="docutils literal notranslate"><span class="pre">%%</span></code></dt><dd><p>Replaced by a single <code class="docutils literal notranslate"><span class="pre">%</span></code>. This allows escaping other substitutions.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%s</span></code></dt><dd><p>File path to the test case’s source. This is suitable for passing on the
command line as the input to an LLVM tool.</p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">/home/user/llvm/test/MC/ELF/foo_test.s</span></code></p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%S</span></code></dt><dd><p>Directory path to the test case’s source.</p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">/home/user/llvm/test/MC/ELF</span></code></p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%t</span></code></dt><dd><p>File path to a temporary file name that could be used for this test case.
The file name won’t conflict with other test cases. You can append to it
if you need multiple temporaries. This is useful as the destination of
some redirected output.</p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">/home/user/llvm.build/test/MC/ELF/Output/foo_test.s.tmp</span></code></p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%T</span></code></dt><dd><p>Directory of <code class="docutils literal notranslate"><span class="pre">%t</span></code>. Deprecated. Shouldn’t be used, because it can be easily
misused and cause race conditions between tests.</p>
<p>Use <code class="docutils literal notranslate"><span class="pre">rm</span> <span class="pre">-rf</span> <span class="pre">%t</span> <span class="pre">&amp;&amp;</span> <span class="pre">mkdir</span> <span class="pre">%t</span></code> instead if a temporary directory is necessary.</p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">/home/user/llvm.build/test/MC/ELF/Output</span></code></p>
</dd>
</dl>
<p><code class="docutils literal notranslate"><span class="pre">%{pathsep}</span></code></p>
<blockquote>
<div><p>Expands to the path separator, i.e. <code class="docutils literal notranslate"><span class="pre">:</span></code> (or <code class="docutils literal notranslate"><span class="pre">;</span></code> on Windows).</p>
</div></blockquote>
<p><code class="docutils literal notranslate"><span class="pre">%/s,</span> <span class="pre">%/S,</span> <span class="pre">%/t,</span> <span class="pre">%/T:</span></code></p>
<blockquote>
<div><p>Act like the corresponding substitution above but replace any <code class="docutils literal notranslate"><span class="pre">\</span></code>
character with a <code class="docutils literal notranslate"><span class="pre">/</span></code>. This is useful to normalize path separators.</p>
<blockquote>
<div><p>Example: <code class="docutils literal notranslate"><span class="pre">%s:</span>&#160; <span class="pre">C:\Desktop</span> <span class="pre">Files/foo_test.s.tmp</span></code></p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">%/s:</span> <span class="pre">C:/Desktop</span> <span class="pre">Files/foo_test.s.tmp</span></code></p>
</div></blockquote>
</div></blockquote>
<p><code class="docutils literal notranslate"><span class="pre">%:s,</span> <span class="pre">%:S,</span> <span class="pre">%:t,</span> <span class="pre">%:T:</span></code></p>
<blockquote>
<div><p>Act like the corresponding substitution above but remove colons at
the beginning of Windows paths. This is useful to allow concatenation
of absolute paths on Windows to produce a legal path.</p>
<blockquote>
<div><p>Example: <code class="docutils literal notranslate"><span class="pre">%s:</span>&#160; <span class="pre">C:\Desktop</span> <span class="pre">Files\foo_test.s.tmp</span></code></p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">%:s:</span> <span class="pre">C\Desktop</span> <span class="pre">Files\foo_test.s.tmp</span></code></p>
</div></blockquote>
</div></blockquote>
<p><code class="docutils literal notranslate"><span class="pre">%errc_&lt;ERRCODE&gt;</span></code></p>
<blockquote>
<div><p>Some error messages may be substituted to allow different spellings
based on the host platform.</p>
<blockquote>
<div><p>The following error codes are currently supported:
ENOENT, EISDIR, EINVAL, EACCES.</p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">Linux</span> <span class="pre">%errc_ENOENT:</span> <span class="pre">No</span> <span class="pre">such</span> <span class="pre">file</span> <span class="pre">or</span> <span class="pre">directory</span></code></p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">Windows</span> <span class="pre">%errc_ENOENT:</span> <span class="pre">no</span> <span class="pre">such</span> <span class="pre">file</span> <span class="pre">or</span> <span class="pre">directory</span></code></p>
</div></blockquote>
</div></blockquote>
<p><strong>LLVM-specific substitutions:</strong></p>
<dl>
<dt><code class="docutils literal notranslate"><span class="pre">%shlibext</span></code></dt><dd><p>The suffix for the host platforms shared library files. This includes the
period as the first character.</p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">.so</span></code> (Linux), <code class="docutils literal notranslate"><span class="pre">.dylib</span></code> (macOS), <code class="docutils literal notranslate"><span class="pre">.dll</span></code> (Windows)</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%exeext</span></code></dt><dd><p>The suffix for the host platforms executable files. This includes the
period as the first character.</p>
<p>Example: <code class="docutils literal notranslate"><span class="pre">.exe</span></code> (Windows), empty on Linux.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%(line)</span></code>, <code class="docutils literal notranslate"><span class="pre">%(line+&lt;number&gt;)</span></code>, <code class="docutils literal notranslate"><span class="pre">%(line-&lt;number&gt;)</span></code></dt><dd><p>The number of the line where this substitution is used, with an optional
integer offset. This can be used in tests with multiple RUN lines, which
reference test file’s line numbers.</p>
</dd>
</dl>
<p><strong>Clang-specific substitutions:</strong></p>
<dl class="simple">
<dt><code class="docutils literal notranslate"><span class="pre">%clang</span></code></dt><dd><p>Invokes the Clang driver.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%clang_cpp</span></code></dt><dd><p>Invokes the Clang driver for C++.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%clang_cl</span></code></dt><dd><p>Invokes the CL-compatible Clang driver.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%clangxx</span></code></dt><dd><p>Invokes the G++-compatible Clang driver.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%clang_cc1</span></code></dt><dd><p>Invokes the Clang frontend.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">%itanium_abi_triple</span></code>, <code class="docutils literal notranslate"><span class="pre">%ms_abi_triple</span></code></dt><dd><p>These substitutions can be used to get the current target triple adjusted to
the desired ABI. For example, if the test suite is running with the
<code class="docutils literal notranslate"><span class="pre">i686-pc-win32</span></code> target, <code class="docutils literal notranslate"><span class="pre">%itanium_abi_triple</span></code> will expand to
<code class="docutils literal notranslate"><span class="pre">i686-pc-mingw32</span></code>. This allows a test to run with a specific ABI without
constraining it to a specific triple.</p>
</dd>
</dl>
<p><strong>FileCheck-specific substitutions:</strong></p>
<dl class="simple">
<dt><code class="docutils literal notranslate"><span class="pre">%ProtectFileCheckOutput</span></code></dt><dd><p>This should precede a <code class="docutils literal notranslate"><span class="pre">FileCheck</span></code> call if and only if the call’s textual
output affects test results.  It’s usually easy to tell: just look for
redirection or piping of the <code class="docutils literal notranslate"><span class="pre">FileCheck</span></code> call’s stdout or stderr.</p>
</dd>
</dl>
<p>To add more substitutions, look at <code class="docutils literal notranslate"><span class="pre">test/lit.cfg</span></code> or <code class="docutils literal notranslate"><span class="pre">lit.local.cfg</span></code>.</p>
</div>
<div class="section" id="options">
<h3><a class="toc-backref" href="#id20">Options</a><a class="headerlink" href="#options" title="Permalink to this headline">¶</a></h3>
<p>The llvm lit configuration allows to customize some things with user options:</p>
<dl>
<dt><code class="docutils literal notranslate"><span class="pre">llc</span></code>, <code class="docutils literal notranslate"><span class="pre">opt</span></code>, …</dt><dd><p>Substitute the respective llvm tool name with a custom command line. This
allows to specify custom paths and default arguments for these tools.
Example:</p>
<p>% llvm-lit “-Dllc=llc -verify-machineinstrs”</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">run_long_tests</span></code></dt><dd><p>Enable the execution of long running tests.</p>
</dd>
<dt><code class="docutils literal notranslate"><span class="pre">llvm_site_config</span></code></dt><dd><p>Load the specified lit configuration instead of the default one.</p>
</dd>
</dl>
</div>
<div class="section" id="other-features">
<h3><a class="toc-backref" href="#id21">Other Features</a><a class="headerlink" href="#other-features" title="Permalink to this headline">¶</a></h3>
<p>To make RUN line writing easier, there are several helper programs. These
helpers are in the PATH when running tests, so you can just call them using
their name. For example:</p>
<dl class="simple">
<dt><code class="docutils literal notranslate"><span class="pre">not</span></code></dt><dd><p>This program runs its arguments and then inverts the result code from it.
Zero result codes become 1. Non-zero result codes become 0.</p>
</dd>
</dl>
<p>To make the output more useful, <strong class="program">lit</strong> will scan
the lines of the test case for ones that contain a pattern that matches
<code class="docutils literal notranslate"><span class="pre">PR[0-9]+</span></code>. This is the syntax for specifying a PR (Problem Report) number
that is related to the test case. The number after “PR” specifies the
LLVM Bugzilla number. When a PR number is specified, it will be used in
the pass/fail reporting. This is useful to quickly get some context when
a test fails.</p>
<p>Finally, any line that contains “END.” will cause the special
interpretation of lines to terminate. This is generally done right after
the last RUN: line. This has two side effects:</p>
<ol class="loweralpha simple">
<li><p>it prevents special interpretation of lines that are part of the test
program, not the instructions to the test case, and</p></li>
<li><p>it speeds things up for really big test cases by avoiding
interpretation of the remainder of the file.</p></li>
</ol>
</div>
</div>
</div>


            <div class="clearer"></div>
          </div>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="TestSuiteGuide.html" title="test-suite Guide"
             >next</a> |</li>
        <li class="right" >
          <a href="SystemLibrary.html" title="System Library"
             >previous</a> |</li>
  <li><a href="https://llvm.org/">LLVM Home</a>&nbsp;|&nbsp;</li>
  <li><a href="index.html">Documentation</a>&raquo;</li>

          <li class="nav-item nav-item-1"><a href="Reference.html" >Reference</a> &#187;</li>
        <li class="nav-item nav-item-this"><a href="">LLVM Testing Infrastructure Guide</a></li> 
      </ul>
    </div>
    <div class="footer" role="contentinfo">
        &#169; Copyright 2003-2021, LLVM Project.
      Last updated on 2021-09-18.
      Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 3.5.4.
    </div>
  </body>
</html>