tests: Don't make a missing llvm-gcc dir a fatal error.
[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 # Tweak the PATH to include the scripts dir, the tools dir, and the llvm-gcc bin
26 # dir (if available).
27 if llvm_obj_root is not None:
28     llvm_src_root = getattr(config, 'llvm_src_root', None)
29     if not llvm_src_root:
30         lit.fatal('No LLVM source root set!')
31     path = os.path.pathsep.join((os.path.join(llvm_src_root, 'test',
32                                               'Scripts'),
33                                  config.environment['PATH']))
34     config.environment['PATH'] = path
35
36     llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
37     if not llvm_tools_dir:
38         lit.fatal('No LLVM tools dir set!')
39     path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
40     config.environment['PATH'] = path
41
42     llvmgcc_dir = getattr(config, 'llvmgcc_dir', None)
43     if llvmgcc_dir:
44         path = os.path.pathsep.join((os.path.join(llvmgcc_dir, 'bin'),
45                                      config.environment['PATH']))
46         config.environment['PATH'] = path
47
48 ###
49
50 import os
51
52 # Check that the object root is known.
53 if config.test_exec_root is None:
54     # Otherwise, we haven't loaded the site specific configuration (the user is
55     # probably trying to run on a test file directly, and either the site
56     # configuration hasn't been created by the build system, or we are in an
57     # out-of-tree build situation).
58
59     # Check for 'llvm_site_config' user parameter, and use that if available.
60     site_cfg = lit.params.get('llvm_site_config', None)
61     if site_cfg and os.path.exists(site_cfg):
62         lit.load_config(config, site_cfg)
63         raise SystemExit
64
65     # Try to detect the situation where we are using an out-of-tree build by
66     # looking for 'llvm-config'.
67     #
68     # FIXME: I debated (i.e., wrote and threw away) adding logic to
69     # automagically generate the lit.site.cfg if we are in some kind of fresh
70     # build situation. This means knowing how to invoke the build system
71     # though, and I decided it was too much magic.
72
73     llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
74     if not llvm_config:
75         lit.fatal('No site specific configuration available!')
76
77     # Get the source and object roots.
78     llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip()
79     llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip()
80
81     # Validate that we got a tree which points to here.
82     this_src_root = os.path.dirname(config.test_source_root)
83     if os.path.realpath(llvm_src_root) != os.path.realpath(this_src_root):
84         lit.fatal('No site specific configuration available!')
85
86     # Check that the site specific configuration exists.
87     site_cfg = os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
88     if not os.path.exists(site_cfg):
89         lit.fatal('No site specific configuration available!')
90
91     # Okay, that worked. Notify the user of the automagic, and reconfigure.
92     lit.note('using out-of-tree build at %r' % llvm_obj_root)
93     lit.load_config(config, site_cfg)
94     raise SystemExit
95
96 ###
97
98 # Load site data from DejaGNU's site.exp.
99 import re
100 site_exp = {}
101 # FIXME: Implement lit.site.cfg.
102 for line in open(os.path.join(config.llvm_obj_root, 'test', 'site.exp')):
103     m = re.match('set ([^ ]+) "([^"]*)"', line)
104     if m:
105         site_exp[m.group(1)] = m.group(2)
106
107 # Add substitutions.
108 config.substitutions.append(('%llvmgcc_only', site_exp['llvmgcc']))
109 for sub in ['llvmgcc', 'llvmgxx', 'compile_cxx', 'compile_c',
110             'link', 'shlibext', 'ocamlopt', 'llvmdsymutil', 'llvmlibsdir',
111             'bugpoint_topts']:
112     if sub in ('llvmgcc', 'llvmgxx'):
113         config.substitutions.append(('%' + sub,
114                                      site_exp[sub] + ' -emit-llvm -w'))
115     # FIXME: This is a hack to avoid LLVMC tests failing due to a clang driver
116     #        warning when passing in "-fexceptions -fno-exceptions".
117     elif sub == 'compile_cxx':
118         config.substitutions.append(('%' + sub,
119                                   site_exp[sub].replace('-fno-exceptions', '')))
120     else:
121         config.substitutions.append(('%' + sub, site_exp[sub]))
122
123 excludes = []
124
125 # Provide target_triple for use in XFAIL and XTARGET.
126 config.target_triple = site_exp['target_triplet']
127
128 # Provide llvm_supports_target for use in local configs.
129 targets = set(site_exp["TARGETS_TO_BUILD"].split())
130 def llvm_supports_target(name):
131     return name in targets
132
133 def llvm_supports_darwin_and_target(name):
134     return 'darwin' in config.target_triple and llvm_supports_target(name)
135
136 langs = set(site_exp['llvmgcc_langs'].split(','))
137 def llvm_gcc_supports(name):
138     return name in langs
139
140 bindings = set(site_exp['llvm_bindings'].split(','))
141 def llvm_supports_binding(name):
142     return name in bindings
143
144 # Provide on_clone hook for reading 'dg.exp'.
145 import os
146 simpleLibData = re.compile(r"""load_lib llvm.exp
147
148 RunLLVMTests \[lsort \[glob -nocomplain \$srcdir/\$subdir/\*\.(.*)\]\]""",
149                            re.MULTILINE)
150 conditionalLibData = re.compile(r"""load_lib llvm.exp
151
152 if.*\[ ?(llvm[^ ]*) ([^ ]*) ?\].*{
153  *RunLLVMTests \[lsort \[glob -nocomplain \$srcdir/\$subdir/\*\.(.*)\]\]
154 \}""", re.MULTILINE)
155 def on_clone(parent, cfg, for_path):
156     def addSuffixes(match):
157         if match[0] == '{' and match[-1] == '}':
158             cfg.suffixes = ['.' + s for s in match[1:-1].split(',')]
159         else:
160             cfg.suffixes = ['.' + match]
161
162     libPath = os.path.join(os.path.dirname(for_path),
163                            'dg.exp')
164     if not os.path.exists(libPath):
165         cfg.unsupported = True
166         return
167
168     # Reset unsupported, in case we inherited it.
169     cfg.unsupported = False
170     lib = open(libPath).read().strip()
171
172     # Check for a simple library.
173     m = simpleLibData.match(lib)
174     if m:
175         addSuffixes(m.group(1))
176         return
177
178     # Check for a conditional test set.
179     m = conditionalLibData.match(lib)
180     if m:
181         funcname,arg,match = m.groups()
182         addSuffixes(match)
183
184         func = globals().get(funcname)
185         if not func:
186             lit.error('unsupported predicate %r' % funcname)
187         elif not func(arg):
188             cfg.unsupported = True
189         return
190     # Otherwise, give up.
191     lit.error('unable to understand %r:\n%s' % (libPath, lib))
192
193 config.on_clone = on_clone