]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Unit/lit.cfg
Vendor import of lld trunk r233088:
[FreeBSD/FreeBSD.git] / test / Unit / lit.cfg
1 # -*- Python -*-
2
3 # Configuration file for the 'lit' test runner.
4
5 import os
6
7 import lit.formats
8
9 # name: The name of this test suite.
10 config.name = 'lld-Unit'
11
12 # suffixes: A list of file extensions to treat as test files.
13 config.suffixes =  []
14
15 # test_source_root: The root path where unit test binaries are located.
16 # test_exec_root: The root path where tests should be run.
17 config.test_source_root = os.path.join(config.lld_obj_root, 'unittests')
18 config.test_exec_root = config.test_source_root
19
20 # testFormat: The test format to use to interpret tests.
21 if not hasattr(config, 'llvm_build_mode'):
22     lit_config.fatal("unable to find llvm_build_mode value on config")
23 config.test_format = lit.formats.GoogleTest(config.llvm_build_mode, 'Tests')