blob: 8f00c8df739e235e2a9b78c4b6275dc4893139e1 [file] [log] [blame]
Daniel Dunbar5ad7e152009-11-15 08:10:41 +00001# -*- Python -*-
2
3# Configuration file for the 'lit' test runner.
4
5def getRoot(config):
6 if not config.parent:
7 return config
8 return getRoot(config.parent)
9
10root = getRoot(config)
11
12# testFormat: The test format to use to interpret tests.
13cxxflags = ['-D__STDC_LIMIT_MACROS',
14 '-D__STDC_CONSTANT_MACROS',
15 '-Wno-sign-compare',
16 '-I%s/include' % root.llvm_src_root,
17 '-I%s/include' % root.llvm_obj_root,
18 '-I%s/tools/clang/include' % root.llvm_src_root,
19 '-I%s/tools/clang/include' % root.llvm_obj_root]
20config.test_format = \
21 lit.formats.OneCommandPerFileTest(command=[root.clang,
22 '-fsyntax-only'] + cxxflags,
23 dir='%s/tools/clang/lib' % root.llvm_src_root,
24 recursive=True,
25 pattern='^(.*\\.cpp)$')