blob: f22b0376b4d8ce850118b85706db64cf990cafa9 [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 Dunbar724827f2009-09-08 16:39:23 +00009
Daniel Dunbar1db467f2009-07-31 05:54:17 +000010# Configuration file for the 'lit' test runner.
11
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000012# name: The name of this test suite.
13config.name = 'Clang'
Daniel Dunbar724827f2009-09-08 16:39:23 +000014
NAKAMURA Takumi98af1ac2011-02-09 04:19:57 +000015# Tweak PATH for Win32
16if platform.system() == 'Windows':
17 # Seek sane tools in directories and set to $PATH.
18 path = getattr(config, 'lit_tools_dir', None)
19 path = lit.getToolsPath(path,
20 config.environment['PATH'],
21 ['cmp.exe', 'grep.exe', 'sed.exe'])
22 if path is not None:
23 path = os.path.pathsep.join((path,
24 config.environment['PATH']))
25 config.environment['PATH'] = path
26
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000027# testFormat: The test format to use to interpret tests.
Daniel Dunbar1db467f2009-07-31 05:54:17 +000028#
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000029# For now we require '&&' between commands, until they get globally killed and
30# the test runner updated.
NAKAMURA Takumi9085e6f2011-03-05 11:16:06 +000031execute_external = (platform.system() != 'Windows'
32 or lit.getBashPath() not in [None, ""])
Daniel Dunbarbc20ef32009-11-08 01:47:35 +000033config.test_format = lit.formats.ShTest(execute_external)
Daniel Dunbar6827f3f2009-09-06 01:31:12 +000034
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000035# suffixes: A list of file extensions to treat as test files.
Jim Grosbachfc308292012-02-10 20:37:10 +000036config.suffixes = ['.c', '.cpp', '.m', '.mm', '.cu', '.ll', '.cl', '.s']
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000037
38# test_source_root: The root path where tests are located.
39config.test_source_root = os.path.dirname(__file__)
40
41# test_exec_root: The root path where tests should be run.
42clang_obj_root = getattr(config, 'clang_obj_root', None)
43if clang_obj_root is not None:
44 config.test_exec_root = os.path.join(clang_obj_root, 'test')
45
46# Set llvm_{src,obj}_root for use by others.
47config.llvm_src_root = getattr(config, 'llvm_src_root', None)
48config.llvm_obj_root = getattr(config, 'llvm_obj_root', None)
49
Jordy Rose40f45ee2012-04-06 18:14:01 +000050# Clear some environment variables that might affect Clang.
51#
52# This first set of vars are read by Clang, but shouldn't affect tests
53# that aren't specifically looking for these features, or are required
54# simply to run the tests at all.
55#
56# FIXME: Should we have a tool that enforces this?
57
58# safe_env_vars = ('TMPDIR', 'TEMP', 'TMP', 'USERPROFILE', 'PWD',
59# 'MACOSX_DEPLOYMENT_TARGET', 'IPHONEOS_DEPLOYMENT_TARGET',
60# 'IOS_SIMULATOR_DEPLOYMENT_TARGET',
61# 'VCINSTALLDIR', 'VC100COMNTOOLS', 'VC90COMNTOOLS',
62# 'VC80COMNTOOLS')
NAKAMURA Takumi79c5f952012-04-07 01:02:53 +000063possibly_dangerous_env_vars = ['COMPILER_PATH', 'RC_DEBUG_OPTIONS',
Jordy Rose40f45ee2012-04-06 18:14:01 +000064 'CINDEXTEST_PREAMBLE_FILE', 'LIBRARY_PATH',
65 'CPATH', 'C_INCLUDE_PATH', 'CPLUS_INCLUDE_PATH',
66 'OBJC_INCLUDE_PATH', 'OBJCPLUS_INCLUDE_PATH',
67 'LIBCLANG_TIMING', 'LIBCLANG_OBJTRACKING',
68 'LIBCLANG_LOGGING', 'LIBCLANG_BGPRIO_INDEX',
69 'LIBCLANG_BGPRIO_EDIT', 'LIBCLANG_NOTHREADS',
70 'LIBCLANG_RESOURCE_USAGE',
NAKAMURA Takumi79c5f952012-04-07 01:02:53 +000071 'LIBCLANG_CODE_COMPLETION_LOGGING']
72# Clang/Win32 may refer to %INCLUDE%. vsvarsall.bat sets it.
73if platform.system() != 'Windows':
74 possibly_dangerous_env_vars.append('INCLUDE')
Jordy Rose40f45ee2012-04-06 18:14:01 +000075for name in possibly_dangerous_env_vars:
76 if name in config.environment:
77 del config.environment[name]
78
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000079# Tweak the PATH to include the tools dir and the scripts dir.
80if clang_obj_root is not None:
81 llvm_tools_dir = getattr(config, 'llvm_tools_dir', None)
82 if not llvm_tools_dir:
83 lit.fatal('No LLVM tools dir set!')
Daniel Dunbaree45d6d2009-09-24 06:31:08 +000084 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000085 config.environment['PATH'] = path
86
Daniel Dunbar9e10cc72009-09-26 07:36:09 +000087 llvm_libs_dir = getattr(config, 'llvm_libs_dir', None)
88 if not llvm_libs_dir:
89 lit.fatal('No LLVM libs dir set!')
90 path = os.path.pathsep.join((llvm_libs_dir,
91 config.environment.get('LD_LIBRARY_PATH','')))
92 config.environment['LD_LIBRARY_PATH'] = path
93
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +000094###
95
96# Check that the object root is known.
97if config.test_exec_root is None:
98 # Otherwise, we haven't loaded the site specific configuration (the user is
99 # probably trying to run on a test file directly, and either the site
100 # configuration hasn't been created by the build system, or we are in an
101 # out-of-tree build situation).
102
Daniel Dunbarb258d8f2009-11-05 16:36:19 +0000103 # Check for 'clang_site_config' user parameter, and use that if available.
104 site_cfg = lit.params.get('clang_site_config', None)
105 if site_cfg and os.path.exists(site_cfg):
106 lit.load_config(config, site_cfg)
107 raise SystemExit
108
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000109 # Try to detect the situation where we are using an out-of-tree build by
110 # looking for 'llvm-config'.
111 #
112 # FIXME: I debated (i.e., wrote and threw away) adding logic to
113 # automagically generate the lit.site.cfg if we are in some kind of fresh
Daniel Dunbar23354212009-11-07 23:53:17 +0000114 # build situation. This means knowing how to invoke the build system though,
115 # and I decided it was too much magic. We should solve this by just having
116 # the .cfg files generated during the configuration step.
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000117
118 llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
119 if not llvm_config:
120 lit.fatal('No site specific configuration available!')
121
122 # Get the source and object roots.
123 llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip()
124 llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip()
125 clang_src_root = os.path.join(llvm_src_root, "tools", "clang")
126 clang_obj_root = os.path.join(llvm_obj_root, "tools", "clang")
127
128 # Validate that we got a tree which points to here, using the standard
129 # tools/clang layout.
130 this_src_root = os.path.dirname(config.test_source_root)
131 if os.path.realpath(clang_src_root) != os.path.realpath(this_src_root):
132 lit.fatal('No site specific configuration available!')
133
134 # Check that the site specific configuration exists.
135 site_cfg = os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
136 if not os.path.exists(site_cfg):
Nico Weberb4a88ef2010-09-27 20:40:32 +0000137 lit.fatal('No site specific configuration available! You may need to '
138 'run "make test" in your Clang build directory.')
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000139
140 # Okay, that worked. Notify the user of the automagic, and reconfigure.
141 lit.note('using out-of-tree build at %r' % clang_obj_root)
142 lit.load_config(config, site_cfg)
143 raise SystemExit
144
145###
146
147# Discover the 'clang' and 'clangcc' to use.
148
149import os
150
151def inferClang(PATH):
152 # Determine which clang to use.
153 clang = os.getenv('CLANG')
154
155 # If the user set clang in the environment, definitely use that and don't
156 # try to validate.
157 if clang:
158 return clang
159
160 # Otherwise look in the path.
161 clang = lit.util.which('clang', PATH)
162
163 if not clang:
164 lit.fatal("couldn't find 'clang' program, try setting "
165 "CLANG in your environment")
166
167 return clang
168
NAKAMURA Takumi9085e6f2011-03-05 11:16:06 +0000169config.clang = inferClang(config.environment['PATH']).replace('\\', '/')
Daniel Dunbar5e01e3c2009-09-22 05:16:02 +0000170if not lit.quiet:
171 lit.note('using clang: %r' % config.clang)
Chandler Carruth044a790c2011-11-05 10:15:27 +0000172
173# Note that when substituting %clang_cc1 also fill in the include directory of
174# the builtin headers. Those are part of even a freestanding environment, but
175# Clang relies on the driver to locate them.
Chandler Carruthdf0a4c32011-11-05 23:29:28 +0000176def getClangBuiltinIncludeDir(clang):
Chandler Carruthb40fd3f2011-11-05 20:55:50 +0000177 # FIXME: Rather than just getting the version, we should have clang print
178 # out its resource dir here in an easy to scrape form.
Chandler Carruthdf0a4c32011-11-05 23:29:28 +0000179 cmd = subprocess.Popen([clang, '-print-file-name=include'],
180 stdout=subprocess.PIPE)
181 if not cmd.stdout:
182 lit.fatal("Couldn't find the include dir for Clang ('%s')" % clang)
183 return cmd.stdout.read().strip()
Chandler Carruthb40fd3f2011-11-05 20:55:50 +0000184
Chandler Carruth07643082011-11-07 09:17:31 +0000185config.substitutions.append( ('%clang_cc1', '%s -cc1 -internal-isystem %s'
Chandler Carruthdf0a4c32011-11-05 23:29:28 +0000186 % (config.clang,
187 getClangBuiltinIncludeDir(config.clang))) )
Chandler Carruth044a790c2011-11-05 10:15:27 +0000188
Daniel Dunbar9fde9c42010-06-29 16:52:24 +0000189config.substitutions.append( ('%clangxx', ' ' + config.clang +
Rafael Espindolad2d4d682012-10-30 00:13:16 +0000190 ' -ccc-cxx '))
Daniel Dunbar80737ad2009-12-15 22:01:24 +0000191config.substitutions.append( ('%clang', ' ' + config.clang + ' ') )
Devang Patel8c6b9132010-09-13 20:46:23 +0000192config.substitutions.append( ('%test_debuginfo', ' ' + config.llvm_src_root + '/utils/test_debuginfo.pl ') )
Daniel Dunbara5728872009-12-15 20:14:24 +0000193
Daniel Dunbar80737ad2009-12-15 22:01:24 +0000194# FIXME: Find nicer way to prohibit this.
195config.substitutions.append(
196 (' clang ', """*** Do not use 'clang' in tests, use '%clang'. ***""") )
197config.substitutions.append(
David Greene431feb52011-01-03 17:28:52 +0000198 (' clang\+\+ ', """*** Do not use 'clang++' in tests, use '%clangxx'. ***"""))
Daniel Dunbar679d6052010-02-17 20:31:01 +0000199config.substitutions.append(
Daniel Dunbar80737ad2009-12-15 22:01:24 +0000200 (' clang-cc ',
201 """*** Do not use 'clang-cc' in tests, use '%clang_cc1'. ***""") )
202config.substitutions.append(
203 (' clang -cc1 ',
204 """*** Do not use 'clang -cc1' in tests, use '%clang_cc1'. ***""") )
Daniel Dunbar9fde9c42010-06-29 16:52:24 +0000205config.substitutions.append(
206 (' %clang-cc1 ',
207 """*** invalid substitution, use '%clang_cc1'. ***""") )
Daniel Dunbardb918642010-08-24 21:39:55 +0000208
209###
210
211# Set available features we allow tests to conditionalize on.
Andrew Trick6da28e22011-08-26 22:46:31 +0000212#
213# As of 2011.08, crash-recovery tests still do not pass on FreeBSD.
214if platform.system() not in ['FreeBSD']:
215 config.available_features.add('crash-recovery')
NAKAMURA Takumief34d772011-02-28 09:41:07 +0000216
217# Shell execution
218if platform.system() not in ['Windows'] or lit.getBashPath() != '':
219 config.available_features.add('shell')
Galina Kistanovaee226972011-06-03 18:36:30 +0000220
NAKAMURA Takumi05a10ff2013-01-16 06:10:16 +0000221# Exclude MSYS due to transforming '/' to 'X:/mingwroot/'.
222if not platform.system() in ['Windows'] or lit.getBashPath() == '':
223 config.available_features.add('shell-preserves-root')
224
Alexander Potapenko087c65f2012-09-20 10:10:01 +0000225# For tests that require Darwin to run.
226if platform.system() in ['Darwin']:
227 config.available_features.add('system-darwin')
228
NAKAMURA Takumi5e3d24c2012-09-12 10:38:03 +0000229# ANSI escape sequences in non-dumb terminal
NAKAMURA Takumi0ca4be32012-07-11 11:44:00 +0000230if platform.system() not in ['Windows']:
231 config.available_features.add('ansi-escape-sequences')
232
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +0000233# Case-insensitive file system
234def is_filesystem_case_insensitive():
Argyrios Kyrtzidisb2ed96a2012-11-01 00:59:15 +0000235 handle, path = tempfile.mkstemp(prefix='case-test', dir=config.test_exec_root)
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +0000236 isInsensitive = os.path.exists(path.upper())
237 os.close(handle)
238 os.remove(path)
239 return isInsensitive
240
241if is_filesystem_case_insensitive():
242 config.available_features.add('case-insensitive-filesystem')
243
Daniel Dunbar0b95bd02012-11-15 20:06:10 +0000244# Tests that require the /dev/fd filesystem.
NAKAMURA Takumi93308b92012-11-27 05:25:41 +0000245if os.path.exists("/dev/fd/0") and sys.platform not in ['cygwin']:
Daniel Dunbar0b95bd02012-11-15 20:06:10 +0000246 config.available_features.add('dev-fd-fs')
247
NAKAMURA Takumib774d732012-09-12 10:45:40 +0000248# [PR8833] LLP64-incompatible tests
249if not re.match(r'^x86_64.*-(win32|mingw32)$', config.target_triple):
250 config.available_features.add('LP64')
251
NAKAMURA Takumi5e4ccb42012-12-11 07:06:09 +0000252# [PR12920] "clang-driver" -- set if gcc driver is not used.
253if not re.match(r'.*-(cygwin|mingw32)$', config.target_triple):
254 config.available_features.add('clang-driver')
255
Galina Kistanovaee226972011-06-03 18:36:30 +0000256# Registered Targets
NAKAMURA Takumi60796762011-11-28 05:09:42 +0000257def get_llc_props(tool):
Galina Kistanovaee226972011-06-03 18:36:30 +0000258 set_of_targets = set()
NAKAMURA Takumi60796762011-11-28 05:09:42 +0000259 enable_assertions = False
Galina Kistanovaee226972011-06-03 18:36:30 +0000260
261 cmd = subprocess.Popen([tool, '-version'], stdout=subprocess.PIPE)
262
263 # Parse the stdout to get the list of registered targets.
264 parse_targets = False
265 for line in cmd.stdout:
266 if parse_targets:
267 m = re.match( r'(.*) - ', line)
268 if m is not None:
269 set_of_targets.add(m.group(1).strip() + '-registered-target')
270 else:
271 break
272 elif "Registered Targets:" in line:
273 parse_targets = True
274
NAKAMURA Takumi60796762011-11-28 05:09:42 +0000275 if re.search(r'with assertions', line):
276 enable_assertions = True
Galina Kistanovaee226972011-06-03 18:36:30 +0000277
NAKAMURA Takumi60796762011-11-28 05:09:42 +0000278 return {"set_of_targets": set_of_targets,
279 "enable_assertions": enable_assertions}
280
281llc_props = get_llc_props(os.path.join(llvm_tools_dir, 'llc'))
282if len(llc_props['set_of_targets']) > 0:
283 config.available_features.update(llc_props['set_of_targets'])
Galina Kistanovaee226972011-06-03 18:36:30 +0000284else:
285 lit.fatal('No Targets Registered with the LLVM Tools!')
NAKAMURA Takumi60796762011-11-28 05:09:42 +0000286
287if llc_props['enable_assertions']:
288 config.available_features.add('asserts')
Dmitri Gribenkof303d4c2012-08-07 17:54:38 +0000289
290if lit.util.which('xmllint'):
291 config.available_features.add('xmllint')
292