Lines Matching +full:lit +full:- +full:tests
2 lit - A Software Testing Tool
8 *lit* is a portable tool for executing LLVM and Clang style test suites,
9 summarizing their results, and providing indication of failures. *lit* is
26 The official *lit* documentation is in the man page, available online at the LLVM
27 Command Guide: http://llvm.org/cmds/lit.html.
33 The *lit* source is available as part of LLVM, in the LLVM source repository:
34 https://github.com/llvm/llvm-project/tree/main/llvm/utils/lit
37 Contributing to lit
40 Please browse the issues labeled *tools:llvm-lit* in LLVM's issue tracker for
42 https://github.com/llvm/llvm-project/labels/tools%3Allvm-lit
47 utils/lit/lit.py \
48 --path /path/to/your/llvm/build/bin \
49 utils/lit/tests
51 Note that lit's tests depend on ``not`` and ``FileCheck``, LLVM utilities.
52 You will need to have built LLVM tools in order to run lit's test suite
55 You'll also want to confirm that lit continues to work when testing LLVM.
59 make check-llvm
61 And be sure to run the llvm-lit wrapper script as well:
63 /path/to/your/llvm/build/bin/llvm-lit utils/lit/tests
65 Finally, make sure lit works when installed via setuptools:
67 python utils/lit/setup.py install
68 lit --path /path/to/your/llvm/build/bin utils/lit/tests