summaryrefslogtreecommitdiff
path: root/utils/lit/lit/ExampleTests/lit.cfg
blob: dbd574f8bd1058f8a8fc6f600e612f284adbd499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- Python -*-

# Configuration file for the 'lit' test runner.

# name: The name of this test suite.
config.name = 'Examples'

# suffixes: A list of file extensions to treat as test files.
config.suffixes = ['.c', '.cpp', '.m', '.mm', '.ll']

# testFormat: The test format to use to interpret tests.
config.test_format = lit.formats.ShTest()

# test_source_root: The path where tests are located (default is the test suite
# root).
config.test_source_root = None

# test_exec_root: The path where tests are located (default is the test suite
# root).
config.test_exec_root = None

# target_triple: Used by ShTest and TclTest formats for XFAIL checks.
config.target_triple = 'foo'