Add missing substitution for %llvmgcc_only.
[oota-llvm.git] / test / lit.cfg
1 # -*- Python -*-
2
3 # Configuration file for the 'lit' test runner.
4
5 import os
6
7 # name: The name of this test suite.
8 config.name = 'LLVM'
9
10 # testFormat: The test format to use to interpret tests.
11 config.test_format = lit.formats.TclTest()
12
13 # suffixes: A list of file extensions to treat as test files, this is actually
14 # set by on_clone().
15 config.suffixes = []
16
17 # test_source_root: The root path where tests are located.
18 config.test_source_root = os.path.dirname(__file__)
19
20 # test_exec_root: The root path where tests should be run.
21 llvm_obj_root = getattr(config, 'llvm_obj_root', None)
22 if llvm_obj_root is not None:
23     config.test_exec_root = os.path.join(llvm_obj_root, 'test')
24
25 ###
26
27 import os
28
29 # Check that the object root is known.
30 if config.test_exec_root is None:
31     # Otherwise, we haven't loaded the site specific configuration (the user is
32     # probably trying to run on a test file directly, and either the site
33     # configuration hasn't been created by the build system, or we are in an
34     # out-of-tree build situation).
35
36     # Try to detect the situation where we are using an out-of-tree build by
37     # looking for 'llvm-config'.
38     #
39     # FIXME: I debated (i.e., wrote and threw away) adding logic to
40     # automagically generate the lit.site.cfg if we are in some kind of fresh
41     # build situation. This means knowing how to invoke the build system
42     # though, and I decided it was too much magic.
43
44     llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
45     if not llvm_config:
46         lit.fatal('No site specific configuration available!')
47
48     # Get the source and object roots.
49     llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip()
50     llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip()
51
52     # Validate that we got a tree which points to here.
53     this_src_root = os.path.dirname(config.test_source_root)
54     if os.path.realpath(llvm_src_root) != os.path.realpath(this_src_root):
55         lit.fatal('No site specific configuration available!')
56
57     # Check that the site specific configuration exists.
58     site_cfg = os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
59     if not os.path.exists(site_cfg):
60         lit.fatal('No site specific configuration available!')
61
62     # Okay, that worked. Notify the user of the automagic, and reconfigure.
63     lit.note('using out-of-tree build at %r' % llvm_obj_root)
64     lit.load_config(config, site_cfg)
65     raise SystemExit
66
67 ###
68
69 # Load site data from DejaGNU's site.exp.
70 import re
71 site_exp = {}
72 # FIXME: Implement lit.site.cfg.
73 for line in open(os.path.join(config.llvm_obj_root, 'test', 'site.exp')):
74     m = re.match('set ([^ ]+) "([^"]*)"', line)
75     if m:
76         site_exp[m.group(1)] = m.group(2)
77
78 # Add substitutions.
79 config.substitutions.append(('%llvmgcc_only', site_exp['llvmgcc']))
80 for sub in ['llvmgcc', 'llvmgxx', 'compile_cxx', 'compile_c',
81             'link', 'shlibext', 'ocamlopt', 'llvmdsymutil', 'llvmlibsdir',
82             'bugpoint_topts']:
83     if sub in ('llvmgcc', 'llvmgxx'):
84         config.substitutions.append(('%' + sub,
85                                      site_exp[sub] + ' -emit-llvm -w'))
86     else:
87         config.substitutions.append(('%' + sub, site_exp[sub]))
88
89 excludes = []
90
91 # Provide target_triple for use in XFAIL and XTARGET.
92 config.target_triple = site_exp['target_triplet']
93
94 # Provide llvm_supports_target for use in local configs.
95 targets = set(site_exp["TARGETS_TO_BUILD"].split())
96 def llvm_supports_target(name):
97     return name in targets
98
99 langs = set(site_exp['llvmgcc_langs'].split(','))
100 def llvm_gcc_supports(name):
101     return name in langs
102
103 bindings = set(site_exp['llvm_bindings'].split(','))
104 def llvm_supports_binding(name):
105     return name in langs
106
107 # Provide on_clone hook for reading 'dg.exp'.
108 import os
109 simpleLibData = re.compile(r"""load_lib llvm.exp
110
111 RunLLVMTests \[lsort \[glob -nocomplain \$srcdir/\$subdir/\*\.(.*)\]\]""",
112                            re.MULTILINE)
113 conditionalLibData = re.compile(r"""load_lib llvm.exp
114
115 if.*\[ ?(llvm[^ ]*) ([^ ]*) ?\].*{
116  *RunLLVMTests \[lsort \[glob -nocomplain \$srcdir/\$subdir/\*\.(.*)\]\]
117 \}""", re.MULTILINE)
118 def on_clone(parent, cfg, for_path):
119     def addSuffixes(match):
120         if match[0] == '{' and match[-1] == '}':
121             cfg.suffixes = ['.' + s for s in match[1:-1].split(',')]
122         else:
123             cfg.suffixes = ['.' + match]
124
125     libPath = os.path.join(os.path.dirname(for_path),
126                            'dg.exp')
127     if not os.path.exists(libPath):
128         cfg.unsupported = True
129         return
130
131     # Reset unsupported, in case we inherited it.
132     cfg.unsupported = False
133     lib = open(libPath).read().strip()
134
135     # Check for a simple library.
136     m = simpleLibData.match(lib)
137     if m:
138         addSuffixes(m.group(1))
139         return
140
141     # Check for a conditional test set.
142     m = conditionalLibData.match(lib)
143     if m:
144         funcname,arg,match = m.groups()
145         addSuffixes(match)
146
147         func = globals().get(funcname)
148         if not func:
149             lit.error('unsupported predicate %r' % funcname)
150         elif not func(arg):
151             cfg.unsupported = True
152         return
153     # Otherwise, give up.
154     lit.error('unable to understand %r:\n%s' % (libPath, lib))
155
156 config.on_clone = on_clone