Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 1 | ================================= |
| 2 | LLVM Testing Infrastructure Guide |
| 3 | ================================= |
| 4 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 5 | .. contents:: |
| 6 | :local: |
| 7 | |
Sean Silva | e0db519 | 2012-11-14 23:11:10 +0000 | [diff] [blame] | 8 | .. toctree:: |
| 9 | :hidden: |
| 10 | |
| 11 | TestSuiteMakefileGuide |
| 12 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 13 | Overview |
| 14 | ======== |
| 15 | |
| 16 | This document is the reference manual for the LLVM testing |
| 17 | infrastructure. It documents the structure of the LLVM testing |
| 18 | infrastructure, the tools needed to use it, and how to add and run |
| 19 | tests. |
| 20 | |
| 21 | Requirements |
| 22 | ============ |
| 23 | |
Bill Wendling | 27f96da | 2013-10-27 04:02:21 +0000 | [diff] [blame] | 24 | In order to use the LLVM testing infrastructure, you will need all of the |
Rafael Espindola | 21a40085 | 2014-12-12 15:29:31 +0000 | [diff] [blame] | 25 | software required to build LLVM, as well as `Python <http://python.org>`_ 2.7 or |
Bill Wendling | 27f96da | 2013-10-27 04:02:21 +0000 | [diff] [blame] | 26 | later. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 27 | |
Renato Golin | ace59c7 | 2016-05-14 14:27:40 +0000 | [diff] [blame] | 28 | If you intend to run the :ref:`test-suite <test-suite-overview>`, you will also |
| 29 | need a development version of zlib (zlib1g-dev is known to work on several Linux |
| 30 | distributions). |
| 31 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 32 | LLVM testing infrastructure organization |
| 33 | ======================================== |
| 34 | |
| 35 | The LLVM testing infrastructure contains two major categories of tests: |
| 36 | regression tests and whole programs. The regression tests are contained |
| 37 | inside the LLVM repository itself under ``llvm/test`` and are expected |
| 38 | to always pass -- they should be run before every commit. |
| 39 | |
| 40 | The whole programs tests are referred to as the "LLVM test suite" (or |
| 41 | "test-suite") and are in the ``test-suite`` module in subversion. For |
| 42 | historical reasons, these tests are also referred to as the "nightly |
| 43 | tests" in places, which is less ambiguous than "test-suite" and remains |
| 44 | in use although we run them much more often than nightly. |
| 45 | |
| 46 | Regression tests |
| 47 | ---------------- |
| 48 | |
| 49 | The regression tests are small pieces of code that test a specific |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 50 | feature of LLVM or trigger a specific bug in LLVM. The language they are |
| 51 | written in depends on the part of LLVM being tested. These tests are driven by |
| 52 | the :doc:`Lit <CommandGuide/lit>` testing tool (which is part of LLVM), and |
| 53 | are located in the ``llvm/test`` directory. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 54 | |
| 55 | Typically when a bug is found in LLVM, a regression test containing just |
| 56 | enough code to reproduce the problem should be written and placed |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 57 | somewhere underneath this directory. For example, it can be a small |
| 58 | piece of LLVM IR distilled from an actual application or benchmark. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 59 | |
| 60 | ``test-suite`` |
| 61 | -------------- |
| 62 | |
| 63 | The test suite contains whole programs, which are pieces of code which |
| 64 | can be compiled and linked into a stand-alone program that can be |
| 65 | executed. These programs are generally written in high level languages |
| 66 | such as C or C++. |
| 67 | |
| 68 | These programs are compiled using a user specified compiler and set of |
| 69 | flags, and then executed to capture the program output and timing |
| 70 | information. The output of these programs is compared to a reference |
| 71 | output to ensure that the program is being compiled correctly. |
| 72 | |
| 73 | In addition to compiling and executing programs, whole program tests |
| 74 | serve as a way of benchmarking LLVM performance, both in terms of the |
| 75 | efficiency of the programs generated as well as the speed with which |
| 76 | LLVM compiles, optimizes, and generates code. |
| 77 | |
| 78 | The test-suite is located in the ``test-suite`` Subversion module. |
| 79 | |
| 80 | Debugging Information tests |
| 81 | --------------------------- |
| 82 | |
| 83 | The test suite contains tests to check quality of debugging information. |
| 84 | The test are written in C based languages or in LLVM assembly language. |
| 85 | |
| 86 | These tests are compiled and run under a debugger. The debugger output |
| 87 | is checked to validate of debugging information. See README.txt in the |
| 88 | test suite for more information . This test suite is located in the |
| 89 | ``debuginfo-tests`` Subversion module. |
| 90 | |
| 91 | Quick start |
| 92 | =========== |
| 93 | |
| 94 | The tests are located in two separate Subversion modules. The |
| 95 | regressions tests are in the main "llvm" module under the directory |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 96 | ``llvm/test`` (so you get these tests for free with the main LLVM tree). |
| 97 | Use ``make check-all`` to run the regression tests after building LLVM. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 98 | |
Sean Silva | e0db519 | 2012-11-14 23:11:10 +0000 | [diff] [blame] | 99 | The more comprehensive test suite that includes whole programs in C and C++ |
| 100 | is in the ``test-suite`` module. See :ref:`test-suite Quickstart |
| 101 | <test-suite-quickstart>` for more information on running these tests. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 102 | |
| 103 | Regression tests |
| 104 | ---------------- |
| 105 | |
Chris Bieneman | bcc6f19 | 2016-01-26 22:53:12 +0000 | [diff] [blame] | 106 | To run all of the LLVM regression tests use the check-llvm target: |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 107 | |
| 108 | .. code-block:: bash |
| 109 | |
Chris Bieneman | bcc6f19 | 2016-01-26 22:53:12 +0000 | [diff] [blame] | 110 | % make check-llvm |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 111 | |
| 112 | If you have `Clang <http://clang.llvm.org/>`_ checked out and built, you |
| 113 | can run the LLVM and Clang tests simultaneously using: |
| 114 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 115 | .. code-block:: bash |
| 116 | |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 117 | % make check-all |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 118 | |
Daniel Dunbar | 04388af | 2013-08-09 19:39:48 +0000 | [diff] [blame] | 119 | To run the tests with Valgrind (Memcheck by default), use the ``LIT_ARGS`` make |
| 120 | variable to pass the required options to lit. For example, you can use: |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 121 | |
| 122 | .. code-block:: bash |
| 123 | |
Daniel Dunbar | 04388af | 2013-08-09 19:39:48 +0000 | [diff] [blame] | 124 | % make check LIT_ARGS="-v --vg --vg-leak" |
| 125 | |
| 126 | to enable testing with valgrind and with leak checking enabled. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 127 | |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 128 | To run individual tests or subsets of tests, you can use the ``llvm-lit`` |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 129 | script which is built as part of LLVM. For example, to run the |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 130 | ``Integer/BitPacked.ll`` test by itself you can run: |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 131 | |
| 132 | .. code-block:: bash |
| 133 | |
| 134 | % llvm-lit ~/llvm/test/Integer/BitPacked.ll |
| 135 | |
| 136 | or to run all of the ARM CodeGen tests: |
| 137 | |
| 138 | .. code-block:: bash |
| 139 | |
| 140 | % llvm-lit ~/llvm/test/CodeGen/ARM |
| 141 | |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 142 | For more information on using the :program:`lit` tool, see ``llvm-lit --help`` |
| 143 | or the :doc:`lit man page <CommandGuide/lit>`. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 144 | |
| 145 | Debugging Information tests |
| 146 | --------------------------- |
| 147 | |
| 148 | To run debugging information tests simply checkout the tests inside |
| 149 | clang/test directory. |
| 150 | |
| 151 | .. code-block:: bash |
| 152 | |
| 153 | % cd clang/test |
| 154 | % svn co http://llvm.org/svn/llvm-project/debuginfo-tests/trunk debuginfo-tests |
| 155 | |
| 156 | These tests are already set up to run as part of clang regression tests. |
| 157 | |
| 158 | Regression test structure |
| 159 | ========================= |
| 160 | |
Eli Bendersky | 0355138 | 2012-12-03 04:10:58 +0000 | [diff] [blame] | 161 | The LLVM regression tests are driven by :program:`lit` and are located in the |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 162 | ``llvm/test`` directory. |
| 163 | |
| 164 | This directory contains a large array of small tests that exercise |
| 165 | various features of LLVM and to ensure that regressions do not occur. |
| 166 | The directory is broken into several sub-directories, each focused on a |
Eli Bendersky | 42e1073 | 2012-12-04 13:55:17 +0000 | [diff] [blame] | 167 | particular area of LLVM. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 168 | |
| 169 | Writing new regression tests |
| 170 | ---------------------------- |
| 171 | |
| 172 | The regression test structure is very simple, but does require some |
| 173 | information to be set. This information is gathered via ``configure`` |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 174 | and is written to a file, ``test/lit.site.cfg`` in the build directory. |
| 175 | The ``llvm/test`` Makefile does this work for you. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 176 | |
| 177 | In order for the regression tests to work, each directory of tests must |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 178 | have a ``lit.local.cfg`` file. :program:`lit` looks for this file to determine |
| 179 | how to run the tests. This file is just Python code and thus is very |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 180 | flexible, but we've standardized it for the LLVM regression tests. If |
| 181 | you're adding a directory of tests, just copy ``lit.local.cfg`` from |
| 182 | another directory to get running. The standard ``lit.local.cfg`` simply |
| 183 | specifies which files to look in for tests. Any directory that contains |
Dmitri Gribenko | 42c31d2 | 2012-11-18 10:35:18 +0000 | [diff] [blame] | 184 | only directories does not need the ``lit.local.cfg`` file. Read the :doc:`Lit |
| 185 | documentation <CommandGuide/lit>` for more information. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 186 | |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 187 | Each test file must contain lines starting with "RUN:" that tell :program:`lit` |
| 188 | how to run it. If there are no RUN lines, :program:`lit` will issue an error |
| 189 | while running a test. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 190 | |
| 191 | RUN lines are specified in the comments of the test program using the |
| 192 | keyword ``RUN`` followed by a colon, and lastly the command (pipeline) |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 193 | to execute. Together, these lines form the "script" that :program:`lit` |
| 194 | executes to run the test case. The syntax of the RUN lines is similar to a |
| 195 | shell's syntax for pipelines including I/O redirection and variable |
| 196 | substitution. However, even though these lines may *look* like a shell |
| 197 | script, they are not. RUN lines are interpreted by :program:`lit`. |
| 198 | Consequently, the syntax differs from shell in a few ways. You can specify |
| 199 | as many RUN lines as needed. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 200 | |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 201 | :program:`lit` performs substitution on each RUN line to replace LLVM tool names |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 202 | with the full paths to the executable built for each tool (in |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 203 | ``$(LLVM_OBJ_ROOT)/$(BuildMode)/bin)``. This ensures that :program:`lit` does |
| 204 | not invoke any stray LLVM tools in the user's path during testing. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 205 | |
| 206 | Each RUN line is executed on its own, distinct from other lines unless |
| 207 | its last character is ``\``. This continuation character causes the RUN |
| 208 | line to be concatenated with the next one. In this way you can build up |
| 209 | long pipelines of commands without making huge line lengths. The lines |
| 210 | ending in ``\`` are concatenated until a RUN line that doesn't end in |
| 211 | ``\`` is found. This concatenated set of RUN lines then constitutes one |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 212 | execution. :program:`lit` will substitute variables and arrange for the pipeline |
| 213 | to be executed. If any process in the pipeline fails, the entire line (and |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 214 | test case) fails too. |
| 215 | |
| 216 | Below is an example of legal RUN lines in a ``.ll`` file: |
| 217 | |
| 218 | .. code-block:: llvm |
| 219 | |
| 220 | ; RUN: llvm-as < %s | llvm-dis > %t1 |
| 221 | ; RUN: llvm-dis < %s.bc-13 > %t2 |
| 222 | ; RUN: diff %t1 %t2 |
| 223 | |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 224 | As with a Unix shell, the RUN lines permit pipelines and I/O |
Sean Silva | 8eaf3ca | 2013-03-19 15:22:02 +0000 | [diff] [blame] | 225 | redirection to be used. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 226 | |
| 227 | There are some quoting rules that you must pay attention to when writing |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 228 | your RUN lines. In general nothing needs to be quoted. :program:`lit` won't |
| 229 | strip off any quote characters so they will get passed to the invoked program. |
Eli Bendersky | f747bd6 | 2013-01-18 19:01:34 +0000 | [diff] [blame] | 230 | To avoid this use curly braces to tell :program:`lit` that it should treat |
| 231 | everything enclosed as one value. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 232 | |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 233 | In general, you should strive to keep your RUN lines as simple as possible, |
Eli Bendersky | f747bd6 | 2013-01-18 19:01:34 +0000 | [diff] [blame] | 234 | using them only to run tools that generate textual output you can then examine. |
Eli Bendersky | 6f6cbdb | 2013-03-22 16:09:06 +0000 | [diff] [blame] | 235 | The recommended way to examine output to figure out if the test passes is using |
Eli Bendersky | f747bd6 | 2013-01-18 19:01:34 +0000 | [diff] [blame] | 236 | the :doc:`FileCheck tool <CommandGuide/FileCheck>`. *[The usage of grep in RUN |
| 237 | lines is deprecated - please do not send or commit patches that use it.]* |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 238 | |
Davide Italiano | 4efa395 | 2015-11-17 02:17:35 +0000 | [diff] [blame] | 239 | Put related tests into a single file rather than having a separate file per |
| 240 | test. Check if there are files already covering your feature and consider |
| 241 | adding your code there instead of creating a new file. |
| 242 | |
Sean Silva | 15ee408 | 2014-11-05 22:17:18 +0000 | [diff] [blame] | 243 | Extra files |
| 244 | ----------- |
| 245 | |
| 246 | If your test requires extra files besides the file containing the ``RUN:`` |
| 247 | lines, the idiomatic place to put them is in a subdirectory ``Inputs``. |
| 248 | You can then refer to the extra files as ``%S/Inputs/foo.bar``. |
| 249 | |
| 250 | For example, consider ``test/Linker/ident.ll``. The directory structure is |
| 251 | as follows:: |
| 252 | |
| 253 | test/ |
| 254 | Linker/ |
| 255 | ident.ll |
| 256 | Inputs/ |
| 257 | ident.a.ll |
| 258 | ident.b.ll |
| 259 | |
| 260 | For convenience, these are the contents: |
| 261 | |
| 262 | .. code-block:: llvm |
| 263 | |
| 264 | ;;;;; ident.ll: |
| 265 | |
| 266 | ; RUN: llvm-link %S/Inputs/ident.a.ll %S/Inputs/ident.b.ll -S | FileCheck %s |
| 267 | |
| 268 | ; Verify that multiple input llvm.ident metadata are linked together. |
| 269 | |
| 270 | ; CHECK-DAG: !llvm.ident = !{!0, !1, !2} |
| 271 | ; CHECK-DAG: "Compiler V1" |
| 272 | ; CHECK-DAG: "Compiler V2" |
| 273 | ; CHECK-DAG: "Compiler V3" |
| 274 | |
| 275 | ;;;;; Inputs/ident.a.ll: |
| 276 | |
| 277 | !llvm.ident = !{!0, !1} |
| 278 | !0 = metadata !{metadata !"Compiler V1"} |
| 279 | !1 = metadata !{metadata !"Compiler V2"} |
| 280 | |
| 281 | ;;;;; Inputs/ident.b.ll: |
| 282 | |
| 283 | !llvm.ident = !{!0} |
| 284 | !0 = metadata !{metadata !"Compiler V3"} |
| 285 | |
| 286 | For symmetry reasons, ``ident.ll`` is just a dummy file that doesn't |
| 287 | actually participate in the test besides holding the ``RUN:`` lines. |
| 288 | |
| 289 | .. note:: |
| 290 | |
| 291 | Some existing tests use ``RUN: true`` in extra files instead of just |
| 292 | putting the extra files in an ``Inputs/`` directory. This pattern is |
| 293 | deprecated. |
| 294 | |
Dmitri Gribenko | 12be928 | 2012-12-30 14:51:03 +0000 | [diff] [blame] | 295 | Fragile tests |
| 296 | ------------- |
| 297 | |
| 298 | It is easy to write a fragile test that would fail spuriously if the tool being |
| 299 | tested outputs a full path to the input file. For example, :program:`opt` by |
| 300 | default outputs a ``ModuleID``: |
| 301 | |
| 302 | .. code-block:: console |
| 303 | |
| 304 | $ cat example.ll |
| 305 | define i32 @main() nounwind { |
| 306 | ret i32 0 |
| 307 | } |
| 308 | |
| 309 | $ opt -S /path/to/example.ll |
| 310 | ; ModuleID = '/path/to/example.ll' |
| 311 | |
| 312 | define i32 @main() nounwind { |
| 313 | ret i32 0 |
| 314 | } |
| 315 | |
Sylvestre Ledru | e6ec441 | 2017-01-14 11:37:01 +0000 | [diff] [blame] | 316 | ``ModuleID`` can unexpectedly match against ``CHECK`` lines. For example: |
Dmitri Gribenko | 12be928 | 2012-12-30 14:51:03 +0000 | [diff] [blame] | 317 | |
| 318 | .. code-block:: llvm |
| 319 | |
| 320 | ; RUN: opt -S %s | FileCheck |
| 321 | |
| 322 | define i32 @main() nounwind { |
| 323 | ; CHECK-NOT: load |
| 324 | ret i32 0 |
| 325 | } |
| 326 | |
| 327 | This test will fail if placed into a ``download`` directory. |
| 328 | |
| 329 | To make your tests robust, always use ``opt ... < %s`` in the RUN line. |
| 330 | :program:`opt` does not output a ``ModuleID`` when input comes from stdin. |
| 331 | |
Renato Golin | 98c6081 | 2013-07-03 20:56:33 +0000 | [diff] [blame] | 332 | Platform-Specific Tests |
| 333 | ----------------------- |
| 334 | |
| 335 | Whenever adding tests that require the knowledge of a specific platform, |
| 336 | either related to code generated, specific output or back-end features, |
| 337 | you must make sure to isolate the features, so that buildbots that |
| 338 | run on different architectures (and don't even compile all back-ends), |
| 339 | don't fail. |
| 340 | |
| 341 | The first problem is to check for target-specific output, for example sizes |
| 342 | of structures, paths and architecture names, for example: |
| 343 | |
| 344 | * Tests containing Windows paths will fail on Linux and vice-versa. |
| 345 | * Tests that check for ``x86_64`` somewhere in the text will fail anywhere else. |
| 346 | * Tests where the debug information calculates the size of types and structures. |
| 347 | |
| 348 | Also, if the test rely on any behaviour that is coded in any back-end, it must |
| 349 | go in its own directory. So, for instance, code generator tests for ARM go |
| 350 | into ``test/CodeGen/ARM`` and so on. Those directories contain a special |
| 351 | ``lit`` configuration file that ensure all tests in that directory will |
| 352 | only run if a specific back-end is compiled and available. |
| 353 | |
| 354 | For instance, on ``test/CodeGen/ARM``, the ``lit.local.cfg`` is: |
| 355 | |
| 356 | .. code-block:: python |
| 357 | |
| 358 | config.suffixes = ['.ll', '.c', '.cpp', '.test'] |
Alp Toker | d3d017c | 2014-06-09 22:42:55 +0000 | [diff] [blame] | 359 | if not 'ARM' in config.root.targets: |
Renato Golin | 98c6081 | 2013-07-03 20:56:33 +0000 | [diff] [blame] | 360 | config.unsupported = True |
| 361 | |
| 362 | Other platform-specific tests are those that depend on a specific feature |
| 363 | of a specific sub-architecture, for example only to Intel chips that support ``AVX2``. |
| 364 | |
| 365 | For instance, ``test/CodeGen/X86/psubus.ll`` tests three sub-architecture |
| 366 | variants: |
| 367 | |
| 368 | .. code-block:: llvm |
| 369 | |
| 370 | ; RUN: llc -mcpu=core2 < %s | FileCheck %s -check-prefix=SSE2 |
| 371 | ; RUN: llc -mcpu=corei7-avx < %s | FileCheck %s -check-prefix=AVX1 |
| 372 | ; RUN: llc -mcpu=core-avx2 < %s | FileCheck %s -check-prefix=AVX2 |
| 373 | |
| 374 | And the checks are different: |
| 375 | |
| 376 | .. code-block:: llvm |
| 377 | |
| 378 | ; SSE2: @test1 |
| 379 | ; SSE2: psubusw LCPI0_0(%rip), %xmm0 |
| 380 | ; AVX1: @test1 |
| 381 | ; AVX1: vpsubusw LCPI0_0(%rip), %xmm0, %xmm0 |
| 382 | ; AVX2: @test1 |
| 383 | ; AVX2: vpsubusw LCPI0_0(%rip), %xmm0, %xmm0 |
| 384 | |
| 385 | So, if you're testing for a behaviour that you know is platform-specific or |
| 386 | depends on special features of sub-architectures, you must add the specific |
| 387 | triple, test with the specific FileCheck and put it into the specific |
| 388 | directory that will filter out all other architectures. |
| 389 | |
Piotr Padlewski | 7a298c1 | 2016-07-08 23:47:29 +0000 | [diff] [blame] | 390 | |
Greg Parker | 17db770 | 2017-01-25 02:26:03 +0000 | [diff] [blame] | 391 | Constraining test execution |
| 392 | --------------------------- |
| 393 | |
| 394 | Some tests can be run only in specific configurations, such as |
| 395 | with debug builds or on particular platforms. Use ``REQUIRES`` |
| 396 | and ``UNSUPPORTED`` to control when the test is enabled. |
| 397 | |
| 398 | Some tests are expected to fail. For example, there may be a known bug |
| 399 | that the test detect. Use ``XFAIL`` to mark a test as an expected failure. |
| 400 | An ``XFAIL`` test will be successful if its execution fails, and |
| 401 | will be a failure if its execution succeeds. |
Piotr Padlewski | 7a298c1 | 2016-07-08 23:47:29 +0000 | [diff] [blame] | 402 | |
| 403 | .. code-block:: llvm |
| 404 | |
Greg Parker | 17db770 | 2017-01-25 02:26:03 +0000 | [diff] [blame] | 405 | ; This test will be only enabled in the build with asserts. |
Piotr Padlewski | 7a298c1 | 2016-07-08 23:47:29 +0000 | [diff] [blame] | 406 | ; REQUIRES: asserts |
Greg Parker | 17db770 | 2017-01-25 02:26:03 +0000 | [diff] [blame] | 407 | ; This test is disabled on Linux. |
| 408 | ; UNSUPPORTED: -linux- |
| 409 | ; This test is expected to fail on PowerPC. |
| 410 | ; XFAIL: powerpc |
Piotr Padlewski | 7a298c1 | 2016-07-08 23:47:29 +0000 | [diff] [blame] | 411 | |
Greg Parker | 17db770 | 2017-01-25 02:26:03 +0000 | [diff] [blame] | 412 | ``REQUIRES`` and ``UNSUPPORTED`` and ``XFAIL`` all accept a comma-separated |
| 413 | list of boolean expressions. The values in each expression may be: |
Piotr Padlewski | 7a298c1 | 2016-07-08 23:47:29 +0000 | [diff] [blame] | 414 | |
Greg Parker | 17db770 | 2017-01-25 02:26:03 +0000 | [diff] [blame] | 415 | - Features added to ``config.available_features`` by |
| 416 | configuration files such as ``lit.cfg``. |
| 417 | - Substrings of the target triple (``UNSUPPORTED`` and ``XFAIL`` only). |
| 418 | |
| 419 | | ``REQUIRES`` enables the test if all expressions are true. |
| 420 | | ``UNSUPPORTED`` disables the test if any expression is true. |
| 421 | | ``XFAIL`` expects the test to fail if any expression is true. |
| 422 | |
| 423 | As a special case, ``XFAIL: *`` is expected to fail everywhere. |
| 424 | |
| 425 | .. code-block:: llvm |
| 426 | |
| 427 | ; This test is disabled on Windows, |
| 428 | ; and is disabled on Linux, except for Android Linux. |
| 429 | ; UNSUPPORTED: windows, linux && !android |
| 430 | ; This test is expected to fail on both PowerPC and ARM. |
| 431 | ; XFAIL: powerpc || arm |
| 432 | |
Renato Golin | 98c6081 | 2013-07-03 20:56:33 +0000 | [diff] [blame] | 433 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 434 | Substitutions |
| 435 | ------------- |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 436 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 437 | Besides replacing LLVM tool names the following substitutions are performed in |
| 438 | RUN lines: |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 439 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 440 | ``%%`` |
| 441 | Replaced by a single ``%``. This allows escaping other substitutions. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 442 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 443 | ``%s`` |
| 444 | File path to the test case's source. This is suitable for passing on the |
| 445 | command line as the input to an LLVM tool. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 446 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 447 | Example: ``/home/user/llvm/test/MC/ELF/foo_test.s`` |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 448 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 449 | ``%S`` |
| 450 | Directory path to the test case's source. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 451 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 452 | Example: ``/home/user/llvm/test/MC/ELF`` |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 453 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 454 | ``%t`` |
| 455 | File path to a temporary file name that could be used for this test case. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 456 | The file name won't conflict with other test cases. You can append to it |
| 457 | if you need multiple temporaries. This is useful as the destination of |
| 458 | some redirected output. |
| 459 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 460 | Example: ``/home/user/llvm.build/test/MC/ELF/Output/foo_test.s.tmp`` |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 461 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 462 | ``%T`` |
| 463 | Directory of ``%t``. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 464 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 465 | Example: ``/home/user/llvm.build/test/MC/ELF/Output`` |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 466 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 467 | ``%{pathsep}`` |
| 468 | |
| 469 | Expands to the path separator, i.e. ``:`` (or ``;`` on Windows). |
| 470 | |
David Bozier | 9126f54 | 2017-02-09 14:12:30 +0000 | [diff] [blame] | 471 | ``%/s, %/S, %/t, %/T:`` |
| 472 | |
| 473 | Act like the corresponding substitution above but replace any ``\`` |
| 474 | character with a ``/``. This is useful to normalize path separators. |
| 475 | |
| 476 | Example: ``%s: C:\Desktop Files/foo_test.s.tmp`` |
| 477 | |
| 478 | Example: ``%/s: C:/Desktop Files/foo_test.s.tmp`` |
| 479 | |
| 480 | ``%:s, %:S, %:t, %:T:`` |
| 481 | |
| 482 | Act like the corresponding substitution above but remove colons at |
| 483 | the beginning of Windows paths. This is useful to allow concatenation |
| 484 | of absolute paths on Windows to produce a legal path. |
| 485 | |
| 486 | Example: ``%s: C:\Desktop Files\foo_test.s.tmp`` |
| 487 | |
| 488 | Example: ``%:s: C\Desktop Files\foo_test.s.tmp`` |
| 489 | |
Nico Rieck | c4e7f30 | 2014-02-15 08:35:56 +0000 | [diff] [blame] | 490 | |
| 491 | **LLVM-specific substitutions:** |
| 492 | |
| 493 | ``%shlibext`` |
| 494 | The suffix for the host platforms shared library files. This includes the |
| 495 | period as the first character. |
| 496 | |
| 497 | Example: ``.so`` (Linux), ``.dylib`` (OS X), ``.dll`` (Windows) |
| 498 | |
| 499 | ``%exeext`` |
| 500 | The suffix for the host platforms executable files. This includes the |
| 501 | period as the first character. |
| 502 | |
| 503 | Example: ``.exe`` (Windows), empty on Linux. |
| 504 | |
| 505 | ``%(line)``, ``%(line+<number>)``, ``%(line-<number>)`` |
| 506 | The number of the line where this substitution is used, with an optional |
| 507 | integer offset. This can be used in tests with multiple RUN lines, which |
| 508 | reference test file's line numbers. |
| 509 | |
| 510 | |
| 511 | **Clang-specific substitutions:** |
| 512 | |
| 513 | ``%clang`` |
| 514 | Invokes the Clang driver. |
| 515 | |
| 516 | ``%clang_cpp`` |
| 517 | Invokes the Clang driver for C++. |
| 518 | |
| 519 | ``%clang_cl`` |
| 520 | Invokes the CL-compatible Clang driver. |
| 521 | |
| 522 | ``%clangxx`` |
| 523 | Invokes the G++-compatible Clang driver. |
| 524 | |
| 525 | ``%clang_cc1`` |
| 526 | Invokes the Clang frontend. |
| 527 | |
| 528 | ``%itanium_abi_triple``, ``%ms_abi_triple`` |
| 529 | These substitutions can be used to get the current target triple adjusted to |
| 530 | the desired ABI. For example, if the test suite is running with the |
| 531 | ``i686-pc-win32`` target, ``%itanium_abi_triple`` will expand to |
| 532 | ``i686-pc-mingw32``. This allows a test to run with a specific ABI without |
| 533 | constraining it to a specific triple. |
| 534 | |
| 535 | To add more substituations, look at ``test/lit.cfg`` or ``lit.local.cfg``. |
| 536 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 537 | |
Matthias Braun | 29f3f11 | 2015-05-04 21:37:00 +0000 | [diff] [blame] | 538 | Options |
| 539 | ------- |
| 540 | |
| 541 | The llvm lit configuration allows to customize some things with user options: |
| 542 | |
| 543 | ``llc``, ``opt``, ... |
| 544 | Substitute the respective llvm tool name with a custom command line. This |
| 545 | allows to specify custom paths and default arguments for these tools. |
| 546 | Example: |
| 547 | |
| 548 | % llvm-lit "-Dllc=llc -verify-machineinstrs" |
| 549 | |
| 550 | ``run_long_tests`` |
| 551 | Enable the execution of long running tests. |
| 552 | |
| 553 | ``llvm_site_config`` |
| 554 | Load the specified lit configuration instead of the default one. |
| 555 | |
| 556 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 557 | Other Features |
| 558 | -------------- |
| 559 | |
Nico Rieck | ea623c6 | 2014-01-08 16:30:03 +0000 | [diff] [blame] | 560 | To make RUN line writing easier, there are several helper programs. These |
| 561 | helpers are in the PATH when running tests, so you can just call them using |
| 562 | their name. For example: |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 563 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 564 | ``not`` |
Nico Rieck | ea623c6 | 2014-01-08 16:30:03 +0000 | [diff] [blame] | 565 | This program runs its arguments and then inverts the result code from it. |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 566 | Zero result codes become 1. Non-zero result codes become 0. |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 567 | |
Eli Bendersky | 0ffc0d4 | 2012-12-04 14:34:00 +0000 | [diff] [blame] | 568 | To make the output more useful, :program:`lit` will scan |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 569 | the lines of the test case for ones that contain a pattern that matches |
| 570 | ``PR[0-9]+``. This is the syntax for specifying a PR (Problem Report) number |
| 571 | that is related to the test case. The number after "PR" specifies the |
| 572 | LLVM bugzilla number. When a PR number is specified, it will be used in |
| 573 | the pass/fail reporting. This is useful to quickly get some context when |
| 574 | a test fails. |
| 575 | |
| 576 | Finally, any line that contains "END." will cause the special |
| 577 | interpretation of lines to terminate. This is generally done right after |
| 578 | the last RUN: line. This has two side effects: |
| 579 | |
| 580 | (a) it prevents special interpretation of lines that are part of the test |
| 581 | program, not the instructions to the test case, and |
| 582 | |
| 583 | (b) it speeds things up for really big test cases by avoiding |
| 584 | interpretation of the remainder of the file. |
| 585 | |
Renato Golin | ace59c7 | 2016-05-14 14:27:40 +0000 | [diff] [blame] | 586 | .. _test-suite-overview: |
| 587 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 588 | ``test-suite`` Overview |
| 589 | ======================= |
| 590 | |
| 591 | The ``test-suite`` module contains a number of programs that can be |
| 592 | compiled and executed. The ``test-suite`` includes reference outputs for |
| 593 | all of the programs, so that the output of the executed program can be |
| 594 | checked for correctness. |
| 595 | |
| 596 | ``test-suite`` tests are divided into three types of tests: MultiSource, |
| 597 | SingleSource, and External. |
| 598 | |
| 599 | - ``test-suite/SingleSource`` |
| 600 | |
| 601 | The SingleSource directory contains test programs that are only a |
| 602 | single source file in size. These are usually small benchmark |
| 603 | programs or small programs that calculate a particular value. Several |
| 604 | such programs are grouped together in each directory. |
| 605 | |
| 606 | - ``test-suite/MultiSource`` |
| 607 | |
| 608 | The MultiSource directory contains subdirectories which contain |
| 609 | entire programs with multiple source files. Large benchmarks and |
| 610 | whole applications go here. |
| 611 | |
| 612 | - ``test-suite/External`` |
| 613 | |
| 614 | The External directory contains Makefiles for building code that is |
| 615 | external to (i.e., not distributed with) LLVM. The most prominent |
| 616 | members of this directory are the SPEC 95 and SPEC 2000 benchmark |
| 617 | suites. The ``External`` directory does not contain these actual |
| 618 | tests, but only the Makefiles that know how to properly compile these |
| 619 | programs from somewhere else. When using ``LNT``, use the |
| 620 | ``--test-externals`` option to include these tests in the results. |
| 621 | |
Sean Silva | e0db519 | 2012-11-14 23:11:10 +0000 | [diff] [blame] | 622 | .. _test-suite-quickstart: |
| 623 | |
Sean Silva | a89edf6 | 2012-11-14 21:09:30 +0000 | [diff] [blame] | 624 | ``test-suite`` Quickstart |
| 625 | ------------------------- |
| 626 | |
| 627 | The modern way of running the ``test-suite`` is focused on testing and |
| 628 | benchmarking complete compilers using the |
| 629 | `LNT <http://llvm.org/docs/lnt>`_ testing infrastructure. |
| 630 | |
| 631 | For more information on using LNT to execute the ``test-suite``, please |
| 632 | see the `LNT Quickstart <http://llvm.org/docs/lnt/quickstart.html>`_ |
| 633 | documentation. |
| 634 | |
| 635 | ``test-suite`` Makefiles |
| 636 | ------------------------ |
| 637 | |
| 638 | Historically, the ``test-suite`` was executed using a complicated setup |
| 639 | of Makefiles. The LNT based approach above is recommended for most |
| 640 | users, but there are some testing scenarios which are not supported by |
| 641 | the LNT approach. In addition, LNT currently uses the Makefile setup |
| 642 | under the covers and so developers who are interested in how LNT works |
| 643 | under the hood may want to understand the Makefile based setup. |
| 644 | |
| 645 | For more information on the ``test-suite`` Makefile setup, please see |
Sean Silva | e0db519 | 2012-11-14 23:11:10 +0000 | [diff] [blame] | 646 | the :doc:`Test Suite Makefile Guide <TestSuiteMakefileGuide>`. |