blob: 7ec23e3545a9021ce9414dde5e3917dec421a270 [file] [log] [blame]
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001# -*- Python -*-
2
3# Configuration file for the 'lit' test runner.
4
5import os
NAKAMURA Takumib3ccc122010-11-29 00:20:09 +00006import sys
David Greene18d49872011-01-03 17:30:25 +00007import re
Daniel Dunbar70a3b772009-09-08 05:31:44 +00008
9# name: The name of this test suite.
10config.name = 'LLVM'
11
12# testFormat: The test format to use to interpret tests.
13config.test_format = lit.formats.TclTest()
14
15# suffixes: A list of file extensions to treat as test files, this is actually
16# set by on_clone().
17config.suffixes = []
18
19# test_source_root: The root path where tests are located.
20config.test_source_root = os.path.dirname(__file__)
21
22# test_exec_root: The root path where tests should be run.
23llvm_obj_root = getattr(config, 'llvm_obj_root', None)
24if llvm_obj_root is not None:
25 config.test_exec_root = os.path.join(llvm_obj_root, 'test')
26
Daniel Dunbar5ed7be12009-11-08 09:08:00 +000027# Tweak the PATH to include the scripts dir, the tools dir, and the llvm-gcc bin
28# dir (if available).
29if llvm_obj_root is not None:
Tobias Grosseree38f852011-01-04 16:01:17 +000030 # Include llvm-gcc first, as the llvm-gcc binaryies will not appear
31 # neither in the tools nor in the scripts dir. However it might be
32 # possible, that some old llvm tools are in the llvm-gcc dir. Adding
33 # llvm-gcc dir first ensures, that those will always be overwritten
34 # by the new tools in llvm_tools_dir. So now outdated tools are used
35 # for testing
36 llvmgcc_dir = getattr(config, 'llvmgcc_dir', None)
37 if llvmgcc_dir:
38 path = os.path.pathsep.join((os.path.join(llvmgcc_dir, 'bin'),
39 config.environment['PATH']))
40 config.environment['PATH'] = path
41
Daniel Dunbar5ed7be12009-11-08 09:08:00 +000042 llvm_src_root = getattr(config, 'llvm_src_root', None)
43 if not llvm_src_root:
44 lit.fatal('No LLVM source root set!')
45 path = os.path.pathsep.join((os.path.join(llvm_src_root, 'test',
46 'Scripts'),
47 config.environment['PATH']))
48 config.environment['PATH'] = path
49
50 llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
51 if not llvm_tools_dir:
52 lit.fatal('No LLVM tools dir set!')
53 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
54 config.environment['PATH'] = path
55
Duncan Sands51a64552010-09-13 13:32:22 +000056# Propagate 'HOME' through the environment.
Daniel Dunbar1321fec2010-08-10 19:36:25 +000057if 'HOME' in os.environ:
58 config.environment['HOME'] = os.environ['HOME']
Daniel Dunbar55983f12010-02-25 22:09:09 +000059
Duncan Sands51a64552010-09-13 13:32:22 +000060# Propagate 'INCLUDE' through the environment.
Michael J. Spencer06b7f582010-08-30 14:49:00 +000061if 'INCLUDE' in os.environ:
62 config.environment['INCLUDE'] = os.environ['INCLUDE']
63
Duncan Sands51a64552010-09-13 13:32:22 +000064# Propagate 'LIB' through the environment.
Michael J. Spencer06b7f582010-08-30 14:49:00 +000065if 'LIB' in os.environ:
66 config.environment['LIB'] = os.environ['LIB']
67
Michael J. Spencer44d392a2010-12-07 01:23:49 +000068# Propagate the temp directory. Windows requires this because it uses \Windows\
69# if none of these are present.
70if 'TMP' in os.environ:
71 config.environment['TMP'] = os.environ['TMP']
72if 'TEMP' in os.environ:
73 config.environment['TEMP'] = os.environ['TEMP']
74
Duncan Sands51a64552010-09-13 13:32:22 +000075# Propagate LLVM_SRC_ROOT into the environment.
Daniel Dunbar238e73f2010-06-23 18:06:16 +000076config.environment['LLVM_SRC_ROOT'] = getattr(config, 'llvm_src_root', '')
Daniel Dunbar9b2cb692010-06-12 16:21:19 +000077
Duncan Sands51a64552010-09-13 13:32:22 +000078# Propagate PYTHON_EXECUTABLE into the environment
Daniel Dunbar9b2cb692010-06-12 16:21:19 +000079config.environment['PYTHON_EXECUTABLE'] = getattr(config, 'python_executable',
80 '')
81
Daniel Dunbar70a3b772009-09-08 05:31:44 +000082###
83
84import os
85
86# Check that the object root is known.
87if config.test_exec_root is None:
88 # Otherwise, we haven't loaded the site specific configuration (the user is
89 # probably trying to run on a test file directly, and either the site
90 # configuration hasn't been created by the build system, or we are in an
91 # out-of-tree build situation).
92
Daniel Dunbaraefd63d2009-12-08 19:47:36 +000093 # Check for 'llvm_site_config' user parameter, and use that if available.
94 site_cfg = lit.params.get('llvm_site_config', None)
95 if site_cfg and os.path.exists(site_cfg):
96 lit.load_config(config, site_cfg)
97 raise SystemExit
98
Daniel Dunbar70a3b772009-09-08 05:31:44 +000099 # Try to detect the situation where we are using an out-of-tree build by
100 # looking for 'llvm-config'.
101 #
102 # FIXME: I debated (i.e., wrote and threw away) adding logic to
103 # automagically generate the lit.site.cfg if we are in some kind of fresh
104 # build situation. This means knowing how to invoke the build system
105 # though, and I decided it was too much magic.
106
107 llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
108 if not llvm_config:
109 lit.fatal('No site specific configuration available!')
110
111 # Get the source and object roots.
112 llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip()
113 llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip()
114
115 # Validate that we got a tree which points to here.
116 this_src_root = os.path.dirname(config.test_source_root)
117 if os.path.realpath(llvm_src_root) != os.path.realpath(this_src_root):
118 lit.fatal('No site specific configuration available!')
119
120 # Check that the site specific configuration exists.
121 site_cfg = os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
122 if not os.path.exists(site_cfg):
123 lit.fatal('No site specific configuration available!')
124
125 # Okay, that worked. Notify the user of the automagic, and reconfigure.
126 lit.note('using out-of-tree build at %r' % llvm_obj_root)
127 lit.load_config(config, site_cfg)
128 raise SystemExit
129
130###
131
132# Load site data from DejaGNU's site.exp.
133import re
134site_exp = {}
135# FIXME: Implement lit.site.cfg.
136for line in open(os.path.join(config.llvm_obj_root, 'test', 'site.exp')):
Bob Wilson8d854a42010-08-20 14:19:38 +0000137 m = re.match('set ([^ ]+) "(.*)"', line)
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000138 if m:
139 site_exp[m.group(1)] = m.group(2)
140
141# Add substitutions.
Daniel Dunbarb0c9a992009-10-30 21:13:59 +0000142config.substitutions.append(('%llvmgcc_only', site_exp['llvmgcc']))
Duncan Sands48f296d2010-11-25 21:19:52 +0000143for sub in ['llvmgcc', 'llvmgxx', 'emitir', 'compile_cxx', 'compile_c',
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000144 'link', 'shlibext', 'ocamlopt', 'llvmdsymutil', 'llvmlibsdir',
NAKAMURA Takumi38d439f2010-11-29 00:20:21 +0000145 'llvmshlibdir',
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000146 'bugpoint_topts']:
147 if sub in ('llvmgcc', 'llvmgxx'):
148 config.substitutions.append(('%' + sub,
Duncan Sands48f296d2010-11-25 21:19:52 +0000149 site_exp[sub] + ' %emitir -w'))
Benjamin Kramer66c439a2010-02-04 18:40:11 +0000150 # FIXME: This is a hack to avoid LLVMC tests failing due to a clang driver
151 # warning when passing in "-fexceptions -fno-exceptions".
152 elif sub == 'compile_cxx':
153 config.substitutions.append(('%' + sub,
154 site_exp[sub].replace('-fno-exceptions', '')))
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000155 else:
156 config.substitutions.append(('%' + sub, site_exp[sub]))
157
David Greene18d49872011-01-03 17:30:25 +0000158# For each occurrence of an llvm tool name as its own word, replace it
159# with the full path to the build directory holding that tool. This
160# ensures that we are testing the tools just built and not some random
161# tools that might happen to be in the user's PATH. Thus this list
162# includes every tool placed in $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
163# (llvm_tools_dir in lit parlance).
David Greenefd1ed5f2011-01-03 21:55:08 +0000164 # Don't match 'bugpoint-' or 'clang-'.
David Greene70ecc972011-01-04 01:05:30 +0000165 # Don't match '/clang'.
166for pattern in [r"\bbugpoint\b(?!-)", r"(?<!/)\bclang\b(?!-)",
David Greene18d49872011-01-03 17:30:25 +0000167 r"\bedis\b", r"\bgold\b",
168 r"\bllc\b", r"\blli\b",
169 r"\bllvm-ar\b", r"\bllvm-as\b",
170 r"\bllvm-bcanalyzer\b", r"\bllvm-config\b",
171 r"\bllvm-diff\b", r"\bllvm-dis\b",
172 r"\bllvm-extract\b", r"\bllvm-ld\b",
173 r"\bllvm-link\b", r"\bllvm-mc\b",
174 r"\bllvm-nm\b", r"\bllvm-prof\b",
175 r"\bllvm-ranlib\b", r"\bllvm-shlib\b",
176 r"\bllvm-stub\b", r"\bllvm2cpp\b",
177 # Don't match '-llvmc'.
178 r"(?<!-)\bllvmc\b", r"\blto\b",
179 # Don't match '.opt', '-opt'
180 # or '^opt'.
181 r"\bmacho-dump\b", r"(?<!\.|-|\^)\bopt\b",
182 r"\btblgen\b", r"\bFileCheck\b",
183 r"\bFileUpdate\b", r"\bc-index-test\b",
184 r"\bfpcmp\b", r"\bllvm-PerfectShuffle\b",
185 # Handle these specially as they are strings searched
186 # for during testing.
187 r"\| \bcount\b", r"\| \bnot\b"]:
188 # Extract the tool name from the pattern. This relies on the tool
189 # name being surrounded by \b word match operators. If the
190 # pattern starts with "| ", include it in the string to be
191 # substituted.
192 substitution = re.sub(r"^(\\)?((\| )?)\W+b([0-9A-Za-z-_]+)\\b\W*$",
193 r"\2" + llvm_tools_dir + "/" + r"\4",
194 pattern)
195 config.substitutions.append((pattern, substitution))
196
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000197excludes = []
198
199# Provide target_triple for use in XFAIL and XTARGET.
200config.target_triple = site_exp['target_triplet']
201
Jeffrey Yasskin32989de2010-03-20 23:08:45 +0000202# When running under valgrind, we mangle '-vg' or '-vg_leak' onto the end of the
203# triple so we can check it with XFAIL and XTARGET.
204config.target_triple += lit.valgrindTriple
Daniel Dunbara56a8102010-03-20 21:12:48 +0000205
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000206# Provide llvm_supports_target for use in local configs.
207targets = set(site_exp["TARGETS_TO_BUILD"].split())
208def llvm_supports_target(name):
209 return name in targets
210
Daniel Dunbar197f1f02010-02-02 22:00:15 +0000211def llvm_supports_darwin_and_target(name):
212 return 'darwin' in config.target_triple and llvm_supports_target(name)
213
Daniel Dunbar2e5ec112010-08-19 16:47:54 +0000214langs = set([s.strip() for s in site_exp['llvmgcc_langs'].split(',')])
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000215def llvm_gcc_supports(name):
Daniel Dunbar62b4d712010-08-19 16:46:52 +0000216 return name.strip() in langs
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000217
Daniel Dunbar2e5ec112010-08-19 16:47:54 +0000218bindings = set([s.strip() for s in site_exp['llvm_bindings'].split(',')])
Daniel Dunbar840a7182009-09-13 01:41:18 +0000219def llvm_supports_binding(name):
Daniel Dunbar62b4d712010-08-19 16:46:52 +0000220 return name.strip() in bindings
Daniel Dunbar840a7182009-09-13 01:41:18 +0000221
Daniel Dunbar70a3b772009-09-08 05:31:44 +0000222# Provide on_clone hook for reading 'dg.exp'.
223import os
224simpleLibData = re.compile(r"""load_lib llvm.exp
225
226RunLLVMTests \[lsort \[glob -nocomplain \$srcdir/\$subdir/\*\.(.*)\]\]""",
227 re.MULTILINE)
228conditionalLibData = re.compile(r"""load_lib llvm.exp
229
230if.*\[ ?(llvm[^ ]*) ([^ ]*) ?\].*{
231 *RunLLVMTests \[lsort \[glob -nocomplain \$srcdir/\$subdir/\*\.(.*)\]\]
232\}""", re.MULTILINE)
233def on_clone(parent, cfg, for_path):
234 def addSuffixes(match):
235 if match[0] == '{' and match[-1] == '}':
236 cfg.suffixes = ['.' + s for s in match[1:-1].split(',')]
237 else:
238 cfg.suffixes = ['.' + match]
239
240 libPath = os.path.join(os.path.dirname(for_path),
241 'dg.exp')
242 if not os.path.exists(libPath):
243 cfg.unsupported = True
244 return
245
246 # Reset unsupported, in case we inherited it.
247 cfg.unsupported = False
248 lib = open(libPath).read().strip()
249
250 # Check for a simple library.
251 m = simpleLibData.match(lib)
252 if m:
253 addSuffixes(m.group(1))
254 return
255
256 # Check for a conditional test set.
257 m = conditionalLibData.match(lib)
258 if m:
259 funcname,arg,match = m.groups()
260 addSuffixes(match)
261
262 func = globals().get(funcname)
263 if not func:
264 lit.error('unsupported predicate %r' % funcname)
265 elif not func(arg):
266 cfg.unsupported = True
267 return
268 # Otherwise, give up.
269 lit.error('unable to understand %r:\n%s' % (libPath, lib))
270
271config.on_clone = on_clone
NAKAMURA Takumib3ccc122010-11-29 00:20:09 +0000272
273### Features
274
NAKAMURA Takumie7331ee2010-12-07 02:43:51 +0000275# Shell execution
276if sys.platform not in ['win32']:
277 config.available_features.add('shell')
278
NAKAMURA Takumib3ccc122010-11-29 00:20:09 +0000279# Loadable module
280# FIXME: This should be supplied by Makefile or autoconf.
281if sys.platform in ['win32', 'cygwin']:
282 loadable_module = (config.enable_shared == 1)
283else:
284 loadable_module = True
285
286if loadable_module:
287 config.available_features.add('loadable_module')