/3rd_party/llvm/utils/lit/lit/ExampleTests/lit.cfg
Unknown | 26 lines | 18 code | 8 blank | 0 comment | 0 complexity | 52b11d3faad6c4686741ea2a285e197e MD5 | raw file
Possible License(s): LGPL-2.1, BSD-3-Clause, JSON, MPL-2.0-no-copyleft-exception, GPL-2.0, GPL-3.0, LGPL-3.0, BSD-2-Clause
1# -*- Python -*- 2 3# Configuration file for the 'lit' test runner. 4 5# name: The name of this test suite. 6config.name = 'Examples' 7 8# suffixes: A list of file extensions to treat as test files. 9config.suffixes = ['.c', '.cpp', '.m', '.mm', '.ll'] 10 11# testFormat: The test format to use to interpret tests. 12config.test_format = lit.formats.ShTest() 13 14# test_source_root: The path where tests are located (default is the test suite 15# root). 16config.test_source_root = None 17 18# test_exec_root: The path where tests are located (default is the test suite 19# root). 20config.test_exec_root = None 21 22# target_triple: Used by ShTest and TclTest formats for XFAIL checks. 23config.target_triple = 'foo' 24 25# available_features: Used by ShTest and TclTest formats for REQUIRES checks. 26config.available_features = ['some-feature-name']