blob: 51e1e4fdbc7d0ab4436d1775b815bd40206d331f [file] [log] [blame]
Daniel Dunbar1db467f2009-07-31 05:54:17 +00001# -*- Python -*-
2
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +00003import os
Daniel Dunbarb850ddd2009-09-22 10:08:03 +00004import platform
Chandler Carruthb40fd3f2011-11-05 20:55:50 +00005import re
6import subprocess
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +00007import tempfile
Chandler Carruthb40fd3f2011-11-05 20:55:50 +00008
Daniel Dunbar4c87ca42013-08-09 14:43:04 +00009import lit.formats
10import lit.util
Daniel Dunbar724827f2009-09-08 16:39:23 +000011
Daniel Dunbar1db467f2009-07-31 05:54:17 +000012# Configuration file for the 'lit' test runner.
13
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000014# name: The name of this test suite.
15config.name = 'Clang'
Daniel Dunbar724827f2009-09-08 16:39:23 +000016
NAKAMURA Takumi98af1ac2011-02-09 04:19:57 +000017# Tweak PATH for Win32
18if platform.system() == 'Windows':
19 # Seek sane tools in directories and set to $PATH.
20 path = getattr(config, 'lit_tools_dir', None)
Daniel Dunbar4c87ca42013-08-09 14:43:04 +000021 path = lit_config.getToolsPath(path,
22 config.environment['PATH'],
23 ['cmp.exe', 'grep.exe', 'sed.exe'])
NAKAMURA Takumi98af1ac2011-02-09 04:19:57 +000024 if path is not None:
25 path = os.path.pathsep.join((path,
26 config.environment['PATH']))
27 config.environment['PATH'] = path
28
Reid Klecknera53763f2013-04-11 13:34:18 +000029# Choose between lit's internal shell pipeline runner and a real shell. If
30# LIT_USE_INTERNAL_SHELL is in the environment, we use that as an override.
31use_lit_shell = os.environ.get("LIT_USE_INTERNAL_SHELL")
32if use_lit_shell:
33 # 0 is external, "" is default, and everything else is internal.
34 execute_external = (use_lit_shell == "0")
35else:
36 # Otherwise we default to internal on Windows and external elsewhere, as
37 # bash on Windows is usually very slow.
38 execute_external = (not sys.platform in ['win32'])
39
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000040# testFormat: The test format to use to interpret tests.
Daniel Dunbar1db467f2009-07-31 05:54:17 +000041#
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000042# For now we require '&&' between commands, until they get globally killed and
43# the test runner updated.
Daniel Dunbarbc20ef32009-11-08 01:47:35 +000044config.test_format = lit.formats.ShTest(execute_external)
Daniel Dunbar6827f3f2009-09-06 01:31:12 +000045
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000046# suffixes: A list of file extensions to treat as test files.
Stephen Hines0e2c34f2015-03-23 12:09:02 -070047config.suffixes = ['.c', '.cpp', '.m', '.mm', '.cu', '.ll', '.cl', '.s', '.S', '.modulemap']
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000048
Alp Toker6c6fd7e2013-11-15 13:37:49 +000049# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
50# subdirectories contain auxiliary inputs for various tests in their parent
51# directories.
52config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
53
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000054# test_source_root: The root path where tests are located.
55config.test_source_root = os.path.dirname(__file__)
56
57# test_exec_root: The root path where tests should be run.
58clang_obj_root = getattr(config, 'clang_obj_root', None)
59if clang_obj_root is not None:
60 config.test_exec_root = os.path.join(clang_obj_root, 'test')
61
62# Set llvm_{src,obj}_root for use by others.
63config.llvm_src_root = getattr(config, 'llvm_src_root', None)
64config.llvm_obj_root = getattr(config, 'llvm_obj_root', None)
65
Jordy Rose40f45ee2012-04-06 18:14:01 +000066# Clear some environment variables that might affect Clang.
67#
68# This first set of vars are read by Clang, but shouldn't affect tests
69# that aren't specifically looking for these features, or are required
70# simply to run the tests at all.
71#
72# FIXME: Should we have a tool that enforces this?
73
74# safe_env_vars = ('TMPDIR', 'TEMP', 'TMP', 'USERPROFILE', 'PWD',
75# 'MACOSX_DEPLOYMENT_TARGET', 'IPHONEOS_DEPLOYMENT_TARGET',
Jordy Rose40f45ee2012-04-06 18:14:01 +000076# 'VCINSTALLDIR', 'VC100COMNTOOLS', 'VC90COMNTOOLS',
77# 'VC80COMNTOOLS')
NAKAMURA Takumi79c5f952012-04-07 01:02:53 +000078possibly_dangerous_env_vars = ['COMPILER_PATH', 'RC_DEBUG_OPTIONS',
Jordy Rose40f45ee2012-04-06 18:14:01 +000079 'CINDEXTEST_PREAMBLE_FILE', 'LIBRARY_PATH',
80 'CPATH', 'C_INCLUDE_PATH', 'CPLUS_INCLUDE_PATH',
81 'OBJC_INCLUDE_PATH', 'OBJCPLUS_INCLUDE_PATH',
82 'LIBCLANG_TIMING', 'LIBCLANG_OBJTRACKING',
83 'LIBCLANG_LOGGING', 'LIBCLANG_BGPRIO_INDEX',
84 'LIBCLANG_BGPRIO_EDIT', 'LIBCLANG_NOTHREADS',
85 'LIBCLANG_RESOURCE_USAGE',
NAKAMURA Takumi79c5f952012-04-07 01:02:53 +000086 'LIBCLANG_CODE_COMPLETION_LOGGING']
87# Clang/Win32 may refer to %INCLUDE%. vsvarsall.bat sets it.
88if platform.system() != 'Windows':
89 possibly_dangerous_env_vars.append('INCLUDE')
Jordy Rose40f45ee2012-04-06 18:14:01 +000090for name in possibly_dangerous_env_vars:
91 if name in config.environment:
92 del config.environment[name]
93
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000094# Tweak the PATH to include the tools dir and the scripts dir.
95if clang_obj_root is not None:
Stephen Hines651f13c2014-04-23 16:59:28 -070096 clang_tools_dir = getattr(config, 'clang_tools_dir', None)
97 if not clang_tools_dir:
98 lit_config.fatal('No Clang tools dir set!')
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000099 llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
100 if not llvm_tools_dir:
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000101 lit_config.fatal('No LLVM tools dir set!')
Stephen Hines651f13c2014-04-23 16:59:28 -0700102 path = os.path.pathsep.join((
103 clang_tools_dir, llvm_tools_dir, config.environment['PATH']))
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000104 config.environment['PATH'] = path
Daniel Dunbar9e10cc72009-09-26 07:36:09 +0000105 llvm_libs_dir = getattr(config, 'llvm_libs_dir', None)
106 if not llvm_libs_dir:
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000107 lit_config.fatal('No LLVM libs dir set!')
Daniel Dunbar9e10cc72009-09-26 07:36:09 +0000108 path = os.path.pathsep.join((llvm_libs_dir,
109 config.environment.get('LD_LIBRARY_PATH','')))
110 config.environment['LD_LIBRARY_PATH'] = path
111
Alexey Samsonov32d2a652013-04-04 07:41:20 +0000112# Propagate path to symbolizer for ASan/MSan.
113for symbolizer in ['ASAN_SYMBOLIZER_PATH', 'MSAN_SYMBOLIZER_PATH']:
114 if symbolizer in os.environ:
115 config.environment[symbolizer] = os.environ[symbolizer]
116
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000117###
118
119# Check that the object root is known.
120if config.test_exec_root is None:
121 # Otherwise, we haven't loaded the site specific configuration (the user is
122 # probably trying to run on a test file directly, and either the site
123 # configuration hasn't been created by the build system, or we are in an
124 # out-of-tree build situation).
125
Daniel Dunbarb258d8f2009-11-05 16:36:19 +0000126 # Check for 'clang_site_config' user parameter, and use that if available.
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000127 site_cfg = lit_config.params.get('clang_site_config', None)
Daniel Dunbarb258d8f2009-11-05 16:36:19 +0000128 if site_cfg and os.path.exists(site_cfg):
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000129 lit_config.load_config(config, site_cfg)
Daniel Dunbarb258d8f2009-11-05 16:36:19 +0000130 raise SystemExit
131
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000132 # Try to detect the situation where we are using an out-of-tree build by
133 # looking for 'llvm-config'.
134 #
135 # FIXME: I debated (i.e., wrote and threw away) adding logic to
136 # automagically generate the lit.site.cfg if we are in some kind of fresh
Daniel Dunbar23354212009-11-07 23:53:17 +0000137 # build situation. This means knowing how to invoke the build system though,
138 # and I decided it was too much magic. We should solve this by just having
139 # the .cfg files generated during the configuration step.
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000140
141 llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
142 if not llvm_config:
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000143 lit_config.fatal('No site specific configuration available!')
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000144
145 # Get the source and object roots.
146 llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip()
147 llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip()
148 clang_src_root = os.path.join(llvm_src_root, "tools", "clang")
149 clang_obj_root = os.path.join(llvm_obj_root, "tools", "clang")
150
151 # Validate that we got a tree which points to here, using the standard
152 # tools/clang layout.
153 this_src_root = os.path.dirname(config.test_source_root)
154 if os.path.realpath(clang_src_root) != os.path.realpath(this_src_root):
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000155 lit_config.fatal('No site specific configuration available!')
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000156
157 # Check that the site specific configuration exists.
158 site_cfg = os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
159 if not os.path.exists(site_cfg):
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000160 lit_config.fatal(
161 'No site specific configuration available! You may need to '
162 'run "make test" in your Clang build directory.')
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000163
164 # Okay, that worked. Notify the user of the automagic, and reconfigure.
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000165 lit_config.note('using out-of-tree build at %r' % clang_obj_root)
166 lit_config.load_config(config, site_cfg)
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000167 raise SystemExit
168
169###
170
171# Discover the 'clang' and 'clangcc' to use.
172
173import os
174
175def inferClang(PATH):
176 # Determine which clang to use.
177 clang = os.getenv('CLANG')
178
179 # If the user set clang in the environment, definitely use that and don't
180 # try to validate.
181 if clang:
182 return clang
183
184 # Otherwise look in the path.
185 clang = lit.util.which('clang', PATH)
186
187 if not clang:
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000188 lit_config.fatal("couldn't find 'clang' program, try setting "
189 "CLANG in your environment")
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000190
191 return clang
192
NAKAMURA Takumi9085e6f2011-03-05 11:16:06 +0000193config.clang = inferClang(config.environment['PATH']).replace('\\', '/')
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000194if not lit_config.quiet:
195 lit_config.note('using clang: %r' % config.clang)
Chandler Carruth044a790c2011-11-05 10:15:27 +0000196
Stephen Hines651f13c2014-04-23 16:59:28 -0700197# Plugins (loadable modules)
198# TODO: This should be supplied by Makefile or autoconf.
199if sys.platform in ['win32', 'cygwin']:
200 has_plugins = (config.enable_shared == 1)
201else:
202 has_plugins = True
203
204if has_plugins and config.llvm_plugin_ext:
205 config.available_features.add('plugins')
206
207config.substitutions.append( ('%llvmshlibdir', config.llvm_shlib_dir) )
208config.substitutions.append( ('%pluginext', config.llvm_plugin_ext) )
209
210if config.clang_examples:
211 config.available_features.add('examples')
212
Chandler Carruth044a790c2011-11-05 10:15:27 +0000213# Note that when substituting %clang_cc1 also fill in the include directory of
214# the builtin headers. Those are part of even a freestanding environment, but
215# Clang relies on the driver to locate them.
Chandler Carruthdf0a4c32011-11-05 23:29:28 +0000216def getClangBuiltinIncludeDir(clang):
Chandler Carruthb40fd3f2011-11-05 20:55:50 +0000217 # FIXME: Rather than just getting the version, we should have clang print
218 # out its resource dir here in an easy to scrape form.
Chandler Carruthdf0a4c32011-11-05 23:29:28 +0000219 cmd = subprocess.Popen([clang, '-print-file-name=include'],
Stephen Hines176edba2014-12-01 14:53:08 -0800220 stdout=subprocess.PIPE,
221 env=config.environment)
Chandler Carruthdf0a4c32011-11-05 23:29:28 +0000222 if not cmd.stdout:
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000223 lit_config.fatal("Couldn't find the include dir for Clang ('%s')" % clang)
NAKAMURA Takumi5407d4a2013-06-26 10:45:20 +0000224 dir = cmd.stdout.read().strip()
225 if sys.platform in ['win32'] and execute_external:
226 # Don't pass dosish path separator to msys bash.exe.
227 dir = dir.replace('\\', '/')
Daniel Dunbar03f443a2013-08-14 16:32:20 +0000228 # Ensure the result is an ascii string, across Python2.5+ - Python3.
229 return str(dir.decode('ascii'))
Chandler Carruthb40fd3f2011-11-05 20:55:50 +0000230
Stephen Hines651f13c2014-04-23 16:59:28 -0700231def makeItaniumABITriple(triple):
232 m = re.match(r'(\w+)-(\w+)-(\w+)', triple)
233 if not m:
234 lit_config.fatal("Could not turn '%s' into Itanium ABI triple" % triple)
235 if m.group(3).lower() != 'win32':
236 # All non-win32 triples use the Itanium ABI.
237 return triple
238 return m.group(1) + '-' + m.group(2) + '-mingw32'
239
240def makeMSABITriple(triple):
241 m = re.match(r'(\w+)-(\w+)-(\w+)', triple)
242 if not m:
243 lit_config.fatal("Could not turn '%s' into MS ABI triple" % triple)
244 isa = m.group(1).lower()
245 vendor = m.group(2).lower()
246 os = m.group(3).lower()
247 if os == 'win32':
248 # If the OS is win32, we're done.
249 return triple
250 if isa.startswith('x86') or isa == 'amd64' or re.match(r'i\d86', isa):
251 # For x86 ISAs, adjust the OS.
252 return isa + '-' + vendor + '-win32'
253 # -win32 is not supported for non-x86 targets; use a default.
254 return 'i686-pc-win32'
255
Stephen Hines176edba2014-12-01 14:53:08 -0800256config.substitutions.append( ('%clang_cc1',
257 '%s -cc1 -internal-isystem %s -nostdsysteminc'
Chandler Carruthdf0a4c32011-11-05 23:29:28 +0000258 % (config.clang,
259 getClangBuiltinIncludeDir(config.clang))) )
Hans Wennborg76b86c22013-07-18 20:29:38 +0000260config.substitutions.append( ('%clang_cpp', ' ' + config.clang +
261 ' --driver-mode=cpp '))
Hans Wennborgc2f531a2013-07-19 20:33:20 +0000262config.substitutions.append( ('%clang_cl', ' ' + config.clang +
263 ' --driver-mode=cl '))
Daniel Dunbar9fde9c42010-06-29 16:52:24 +0000264config.substitutions.append( ('%clangxx', ' ' + config.clang +
Hans Wennborg76b86c22013-07-18 20:29:38 +0000265 ' --driver-mode=g++ '))
Daniel Dunbar80737ad2009-12-15 22:01:24 +0000266config.substitutions.append( ('%clang', ' ' + config.clang + ' ') )
Devang Patel8c6b9132010-09-13 20:46:23 +0000267config.substitutions.append( ('%test_debuginfo', ' ' + config.llvm_src_root + '/utils/test_debuginfo.pl ') )
Stephen Hines651f13c2014-04-23 16:59:28 -0700268config.substitutions.append( ('%itanium_abi_triple', makeItaniumABITriple(config.target_triple)) )
269config.substitutions.append( ('%ms_abi_triple', makeMSABITriple(config.target_triple)) )
Daniel Dunbara5728872009-12-15 20:14:24 +0000270
Stephen Hines176edba2014-12-01 14:53:08 -0800271# The host triple might not be set, at least if we're compiling clang from
272# an already installed llvm.
273if config.host_triple and config.host_triple != '@LLVM_HOST_TRIPLE@':
274 config.substitutions.append( ('%target_itanium_abi_host_triple', '--target=%s' % makeItaniumABITriple(config.host_triple)) )
275else:
276 config.substitutions.append( ('%target_itanium_abi_host_triple', '') )
277
Daniel Dunbar80737ad2009-12-15 22:01:24 +0000278# FIXME: Find nicer way to prohibit this.
279config.substitutions.append(
280 (' clang ', """*** Do not use 'clang' in tests, use '%clang'. ***""") )
281config.substitutions.append(
David Greene431feb52011-01-03 17:28:52 +0000282 (' clang\+\+ ', """*** Do not use 'clang++' in tests, use '%clangxx'. ***"""))
Daniel Dunbar679d6052010-02-17 20:31:01 +0000283config.substitutions.append(
Daniel Dunbar80737ad2009-12-15 22:01:24 +0000284 (' clang-cc ',
285 """*** Do not use 'clang-cc' in tests, use '%clang_cc1'. ***""") )
286config.substitutions.append(
287 (' clang -cc1 ',
288 """*** Do not use 'clang -cc1' in tests, use '%clang_cc1'. ***""") )
Daniel Dunbar9fde9c42010-06-29 16:52:24 +0000289config.substitutions.append(
290 (' %clang-cc1 ',
291 """*** invalid substitution, use '%clang_cc1'. ***""") )
Hans Wennborg76b86c22013-07-18 20:29:38 +0000292config.substitutions.append(
293 (' %clang-cpp ',
294 """*** invalid substitution, use '%clang_cpp'. ***""") )
Hans Wennborgc2f531a2013-07-19 20:33:20 +0000295config.substitutions.append(
296 (' %clang-cl ',
297 """*** invalid substitution, use '%clang_cl'. ***""") )
Daniel Dunbardb918642010-08-24 21:39:55 +0000298
Stephen Hines651f13c2014-04-23 16:59:28 -0700299# For each occurrence of a clang tool name as its own word, replace it
300# with the full path to the build directory holding that tool. This
301# ensures that we are testing the tools just built and not some random
302# tools that might happen to be in the user's PATH.
303tool_dirs = os.path.pathsep.join((clang_tools_dir, llvm_tools_dir))
304
305# Regex assertions to reject neighbor hyphens/dots (seen in some tests).
306# For example, don't match 'clang-check-' or '.clang-format'.
307NoPreHyphenDot = r"(?<!(-|\.))"
308NoPostHyphenDot = r"(?!(-|\.))"
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700309NoPostBar = r"(?!(/|\\))"
Stephen Hines651f13c2014-04-23 16:59:28 -0700310
311for pattern in [r"\bFileCheck\b",
312 r"\bc-index-test\b",
313 NoPreHyphenDot + r"\bclang-check\b" + NoPostHyphenDot,
314 NoPreHyphenDot + r"\bclang-format\b" + NoPostHyphenDot,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700315 NoPreHyphenDot + r"\bclang-interpreter\b" + NoPostHyphenDot,
Stephen Hines651f13c2014-04-23 16:59:28 -0700316 # FIXME: Some clang test uses opt?
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700317 NoPreHyphenDot + r"\bopt\b" + NoPostBar + NoPostHyphenDot,
Stephen Hines651f13c2014-04-23 16:59:28 -0700318 # Handle these specially as they are strings searched
319 # for during testing.
320 r"\| \bcount\b",
321 r"\| \bnot\b"]:
322 # Extract the tool name from the pattern. This relies on the tool
323 # name being surrounded by \b word match operators. If the
324 # pattern starts with "| ", include it in the string to be
325 # substituted.
326 tool_match = re.match(r"^(\\)?((\| )?)\W+b([0-9A-Za-z-_]+)\\b\W*$",
327 pattern)
328 tool_pipe = tool_match.group(2)
329 tool_name = tool_match.group(4)
330 tool_path = lit.util.which(tool_name, tool_dirs)
331 if not tool_path:
332 # Warn, but still provide a substitution.
333 lit_config.note('Did not find ' + tool_name + ' in ' + tool_dirs)
334 tool_path = clang_tools_dir + '/' + tool_name
335 config.substitutions.append((pattern, tool_pipe + tool_path))
336
Daniel Dunbardb918642010-08-24 21:39:55 +0000337###
338
339# Set available features we allow tests to conditionalize on.
Andrew Trick6da28e22011-08-26 22:46:31 +0000340#
Stephen Hines176edba2014-12-01 14:53:08 -0800341# Enabled/disabled features
342if config.clang_staticanalyzer != 0:
343 config.available_features.add("staticanalyzer")
344
Andrew Trick6da28e22011-08-26 22:46:31 +0000345# As of 2011.08, crash-recovery tests still do not pass on FreeBSD.
346if platform.system() not in ['FreeBSD']:
347 config.available_features.add('crash-recovery')
NAKAMURA Takumief34d772011-02-28 09:41:07 +0000348
349# Shell execution
Reid Klecknera53763f2013-04-11 13:34:18 +0000350if execute_external:
NAKAMURA Takumief34d772011-02-28 09:41:07 +0000351 config.available_features.add('shell')
Galina Kistanovaee226972011-06-03 18:36:30 +0000352
NAKAMURA Takumi05a10ff2013-01-16 06:10:16 +0000353# Exclude MSYS due to transforming '/' to 'X:/mingwroot/'.
Hans Wennborgde56bb72013-08-05 20:14:43 +0000354if not platform.system() in ['Windows'] or not execute_external:
NAKAMURA Takumi05a10ff2013-01-16 06:10:16 +0000355 config.available_features.add('shell-preserves-root')
356
Stephen Hines651f13c2014-04-23 16:59:28 -0700357# For tests that require Darwin to run.
358# This is used by debuginfo-tests/*block*.m and debuginfo-tests/foreach.m.
359if platform.system() in ['Darwin']:
360 config.available_features.add('system-darwin')
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700361elif platform.system() in ['Windows']:
362 # For tests that require Windows to run.
363 config.available_features.add('system-windows')
Stephen Hines651f13c2014-04-23 16:59:28 -0700364
NAKAMURA Takumi5e3d24c2012-09-12 10:38:03 +0000365# ANSI escape sequences in non-dumb terminal
NAKAMURA Takumi0ca4be32012-07-11 11:44:00 +0000366if platform.system() not in ['Windows']:
367 config.available_features.add('ansi-escape-sequences')
368
Stephen Hines651f13c2014-04-23 16:59:28 -0700369# Capability to print utf8 to the terminal.
370# Windows expects codepage, unless Wide API.
371if platform.system() not in ['Windows']:
372 config.available_features.add('utf8-capable-terminal')
373
374# Native compilation: Check if triples match.
375# FIXME: Consider cases that target can be executed
376# even if host_triple were different from target_triple.
377if config.host_triple == config.target_triple:
Amaury de la Vieuville09098592013-09-13 11:02:31 +0000378 config.available_features.add("native")
379
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +0000380# Case-insensitive file system
381def is_filesystem_case_insensitive():
Argyrios Kyrtzidisb2ed96a2012-11-01 00:59:15 +0000382 handle, path = tempfile.mkstemp(prefix='case-test', dir=config.test_exec_root)
NAKAMURA Takumi80db6a72013-07-01 09:51:55 +0000383 isInsensitive = os.path.exists(
384 os.path.join(
385 os.path.dirname(path),
386 os.path.basename(path).upper()
387 ))
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +0000388 os.close(handle)
389 os.remove(path)
390 return isInsensitive
391
392if is_filesystem_case_insensitive():
393 config.available_features.add('case-insensitive-filesystem')
394
Daniel Dunbar0b95bd02012-11-15 20:06:10 +0000395# Tests that require the /dev/fd filesystem.
NAKAMURA Takumi93308b92012-11-27 05:25:41 +0000396if os.path.exists("/dev/fd/0") and sys.platform not in ['cygwin']:
Daniel Dunbar0b95bd02012-11-15 20:06:10 +0000397 config.available_features.add('dev-fd-fs')
398
Stephen Hines651f13c2014-04-23 16:59:28 -0700399# DW2 Target
400if not re.match(r'.*-win32$', config.target_triple):
401 config.available_features.add('dw2')
402
403# Not set on native MS environment.
404if not re.match(r'.*-win32$', config.target_triple):
405 config.available_features.add('non-ms-sdk')
406
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700407# Not set on native PS4 environment.
408if not re.match(r'.*-scei-ps4', config.target_triple):
409 config.available_features.add('non-ps4-sdk')
410
NAKAMURA Takumib774d732012-09-12 10:45:40 +0000411# [PR8833] LLP64-incompatible tests
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700412if not re.match(r'^x86_64.*-(win32|mingw32|windows-gnu)$', config.target_triple):
NAKAMURA Takumib774d732012-09-12 10:45:40 +0000413 config.available_features.add('LP64')
414
NAKAMURA Takumi5e4ccb42012-12-11 07:06:09 +0000415# [PR12920] "clang-driver" -- set if gcc driver is not used.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700416if not re.match(r'.*-(cygwin|mingw32|windows-gnu)$', config.target_triple):
NAKAMURA Takumi5e4ccb42012-12-11 07:06:09 +0000417 config.available_features.add('clang-driver')
418
Stephen Hines651f13c2014-04-23 16:59:28 -0700419# [PR18856] Depends to remove opened file. On win32, a file could be removed
420# only if all handles were closed.
421if platform.system() not in ['Windows']:
422 config.available_features.add('can-remove-opened-file')
Galina Kistanovaee226972011-06-03 18:36:30 +0000423
Stephen Hines651f13c2014-04-23 16:59:28 -0700424# Returns set of available features, registered-target(s) and asserts.
425def get_llvm_config_props():
426 set_of_features = set()
Galina Kistanovaee226972011-06-03 18:36:30 +0000427
Stephen Hines651f13c2014-04-23 16:59:28 -0700428 cmd = subprocess.Popen(
429 [
430 os.path.join(llvm_tools_dir, 'llvm-config'),
431 '--assertion-mode',
432 '--targets-built',
433 ],
Stephen Hines176edba2014-12-01 14:53:08 -0800434 stdout=subprocess.PIPE,
435 env=config.environment
Stephen Hines651f13c2014-04-23 16:59:28 -0700436 )
437 # 1st line corresponds to --assertion-mode, "ON" or "OFF".
438 line = cmd.stdout.readline().strip().decode('ascii')
439 if line == "ON":
440 set_of_features.add('asserts')
Galina Kistanovaee226972011-06-03 18:36:30 +0000441
Stephen Hines651f13c2014-04-23 16:59:28 -0700442 # 2nd line corresponds to --targets-built, like;
443 # AArch64 ARM CppBackend X86
444 for arch in cmd.stdout.readline().decode('ascii').split():
445 set_of_features.add(arch.lower() + '-registered-target')
Galina Kistanovaee226972011-06-03 18:36:30 +0000446
Stephen Hines651f13c2014-04-23 16:59:28 -0700447 return set_of_features
NAKAMURA Takumi60796762011-11-28 05:09:42 +0000448
Stephen Hines651f13c2014-04-23 16:59:28 -0700449config.available_features.update(get_llvm_config_props())
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000450
451if lit.util.which('xmllint'):
452 config.available_features.add('xmllint')
453
Alexey Samsonov48c08342013-03-26 08:28:18 +0000454# Sanitizers.
455if config.llvm_use_sanitizer == "Address":
456 config.available_features.add("asan")
Stephen Hines651f13c2014-04-23 16:59:28 -0700457else:
458 config.available_features.add("not_asan")
Alexey Samsonov48c08342013-03-26 08:28:18 +0000459if (config.llvm_use_sanitizer == "Memory" or
460 config.llvm_use_sanitizer == "MemoryWithOrigins"):
461 config.available_features.add("msan")
Stephen Hines176edba2014-12-01 14:53:08 -0800462if config.llvm_use_sanitizer == "Undefined":
463 config.available_features.add("ubsan")
464else:
465 config.available_features.add("not_ubsan")
Michael Gottesman63f40502013-06-19 23:23:49 +0000466
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700467if config.enable_backtrace == "1":
468 config.available_features.add("backtrace")
469
Michael Gottesman63f40502013-06-19 23:23:49 +0000470# Check if we should run long running tests.
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000471if lit_config.params.get("run_long_tests", None) == "true":
Michael Gottesman63f40502013-06-19 23:23:49 +0000472 config.available_features.add("long_tests")
David Dean22d017d2013-07-11 23:37:50 +0000473
474# Check if we should use gmalloc.
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000475use_gmalloc_str = lit_config.params.get('use_gmalloc', None)
David Dean22d017d2013-07-11 23:37:50 +0000476if use_gmalloc_str is not None:
477 if use_gmalloc_str.lower() in ('1', 'true'):
478 use_gmalloc = True
479 elif use_gmalloc_str.lower() in ('', '0', 'false'):
480 use_gmalloc = False
481 else:
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000482 lit_config.fatal('user parameter use_gmalloc should be 0 or 1')
David Dean22d017d2013-07-11 23:37:50 +0000483else:
484 # Default to not using gmalloc
485 use_gmalloc = False
486
487# Allow use of an explicit path for gmalloc library.
488# Will default to '/usr/lib/libgmalloc.dylib' if not set.
Daniel Dunbar4c87ca42013-08-09 14:43:04 +0000489gmalloc_path_str = lit_config.params.get('gmalloc_path',
490 '/usr/lib/libgmalloc.dylib')
David Dean22d017d2013-07-11 23:37:50 +0000491if use_gmalloc:
492 config.environment.update({'DYLD_INSERT_LIBRARIES' : gmalloc_path_str})
Daniel Dunbar8ad46b72013-11-06 21:44:54 +0000493
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700494lit.util.usePlatformSdkOnDarwin(config, lit_config)