]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - utils/lit/lit/ExampleTests/lit.cfg
Vendor import of llvm tags/RELEASE_33/final r183502 (effectively, 3.3
[FreeBSD/FreeBSD.git] / utils / lit / lit / ExampleTests / lit.cfg
1 # -*- Python -*-
2
3 # Configuration file for the 'lit' test runner.
4
5 # name: The name of this test suite.
6 config.name = 'Examples'
7
8 # suffixes: A list of file extensions to treat as test files.
9 config.suffixes = ['.c', '.cpp', '.m', '.mm', '.ll']
10
11 # testFormat: The test format to use to interpret tests.
12 config.test_format = lit.formats.ShTest()
13
14 # test_source_root: The path where tests are located (default is the test suite
15 # root).
16 config.test_source_root = None
17
18 # test_exec_root: The path where tests are located (default is the test suite
19 # root).
20 config.test_exec_root = None
21
22 # target_triple: Used by ShTest format for XFAIL checks.
23 config.target_triple = 'foo'
24
25 # available_features: Used by ShTest format for REQUIRES checks.
26 config.available_features.add('some-feature-name')