Daniel Dunbar | 62b9439 | 2013-02-12 19:28:51 +0000 | [diff] [blame] | 1 | # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80: |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 2 | |
| 3 | # Configuration file for the 'lit' test runner. |
| 4 | |
Daniel Dunbar | b6b3e50 | 2013-08-30 19:52:12 +0000 | [diff] [blame] | 5 | import errno |
Dan Albert | a85b27f | 2014-08-04 18:44:48 +0000 | [diff] [blame] | 6 | import locale |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 7 | import os |
| 8 | import platform |
Daniel Dunbar | b6b3e50 | 2013-08-30 19:52:12 +0000 | [diff] [blame] | 9 | import re |
| 10 | import shlex |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 11 | import signal |
| 12 | import subprocess |
Daniel Dunbar | b6b3e50 | 2013-08-30 19:52:12 +0000 | [diff] [blame] | 13 | import sys |
| 14 | import tempfile |
Howard Hinnant | 3778f27 | 2013-01-14 17:12:54 +0000 | [diff] [blame] | 15 | import time |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 16 | |
Daniel Dunbar | 4a38129 | 2013-08-09 14:44:11 +0000 | [diff] [blame] | 17 | import lit.Test |
| 18 | import lit.formats |
| 19 | import lit.util |
| 20 | |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 21 | class LibcxxTestFormat(lit.formats.FileBasedTest): |
| 22 | """ |
| 23 | Custom test format handler for use with the test format use by libc++. |
| 24 | |
| 25 | Tests fall into two categories: |
| 26 | FOO.pass.cpp - Executable test which should compile, run, and exit with |
| 27 | code 0. |
| 28 | FOO.fail.cpp - Negative test case which is expected to fail compilation. |
| 29 | """ |
| 30 | |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 31 | def __init__(self, cxx_under_test, use_verify_for_fail, |
| 32 | cpp_flags, ld_flags, exec_env): |
Daniel Dunbar | bc9a848 | 2010-09-15 04:11:29 +0000 | [diff] [blame] | 33 | self.cxx_under_test = cxx_under_test |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 34 | self.use_verify_for_fail = use_verify_for_fail |
Daniel Dunbar | 5f09d9e0 | 2010-09-15 04:31:58 +0000 | [diff] [blame] | 35 | self.cpp_flags = list(cpp_flags) |
| 36 | self.ld_flags = list(ld_flags) |
Daniel Dunbar | 8495871 | 2013-02-05 18:03:49 +0000 | [diff] [blame] | 37 | self.exec_env = dict(exec_env) |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 38 | |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 39 | def execute(self, test, lit_config): |
Howard Hinnant | 3778f27 | 2013-01-14 17:12:54 +0000 | [diff] [blame] | 40 | while True: |
| 41 | try: |
| 42 | return self._execute(test, lit_config) |
| 43 | except OSError, oe: |
| 44 | if oe.errno != errno.ETXTBSY: |
| 45 | raise |
| 46 | time.sleep(0.1) |
| 47 | |
| 48 | def _execute(self, test, lit_config): |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 49 | # Extract test metadata from the test file. |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 50 | requires = [] |
Eric Fiselier | 339bdc3 | 2014-08-18 06:43:06 +0000 | [diff] [blame] | 51 | unsupported = [] |
Justin Bogner | 2cfd1fe | 2014-09-03 06:01:52 +0000 | [diff] [blame] | 52 | use_verify = False |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 53 | with open(test.getSourcePath()) as f: |
| 54 | for ln in f: |
| 55 | if 'XFAIL:' in ln: |
| 56 | items = ln[ln.index('XFAIL:') + 6:].split(',') |
Daniel Dunbar | 019c590 | 2013-08-21 23:06:32 +0000 | [diff] [blame] | 57 | test.xfails.extend([s.strip() for s in items]) |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 58 | elif 'REQUIRES:' in ln: |
| 59 | items = ln[ln.index('REQUIRES:') + 9:].split(',') |
| 60 | requires.extend([s.strip() for s in items]) |
Eric Fiselier | 339bdc3 | 2014-08-18 06:43:06 +0000 | [diff] [blame] | 61 | elif 'UNSUPPORTED:' in ln: |
| 62 | items = ln[ln.index('UNSUPPORTED:') + 12:].split(',') |
| 63 | unsupported.extend([s.strip() for s in items]) |
Justin Bogner | 2cfd1fe | 2014-09-03 06:01:52 +0000 | [diff] [blame] | 64 | elif 'USE_VERIFY' in ln and self.use_verify_for_fail: |
| 65 | use_verify = True |
Eric Fiselier | 993dfb1 | 2014-07-31 22:56:52 +0000 | [diff] [blame] | 66 | elif not ln.strip().startswith("//") and ln.strip(): |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 67 | # Stop at the first non-empty line that is not a C++ |
| 68 | # comment. |
| 69 | break |
| 70 | |
| 71 | # Check that we have the required features. |
| 72 | # |
| 73 | # FIXME: For now, this is cribbed from lit.TestRunner, to avoid |
| 74 | # introducing a dependency there. What we more ideally would like to do |
Daniel Dunbar | 019c590 | 2013-08-21 23:06:32 +0000 | [diff] [blame] | 75 | # is lift the "requires" handling to be a core lit framework feature. |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 76 | missing_required_features = [f for f in requires |
| 77 | if f not in test.config.available_features] |
| 78 | if missing_required_features: |
| 79 | return (lit.Test.UNSUPPORTED, |
| 80 | "Test requires the following features: %s" % ( |
| 81 | ', '.join(missing_required_features),)) |
| 82 | |
Eric Fiselier | 339bdc3 | 2014-08-18 06:43:06 +0000 | [diff] [blame] | 83 | unsupported_features = [f for f in unsupported |
| 84 | if f in test.config.available_features] |
| 85 | if unsupported_features: |
| 86 | return (lit.Test.UNSUPPORTED, |
| 87 | "Test is unsupported with the following features: %s" % ( |
| 88 | ', '.join(unsupported_features),)) |
| 89 | |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 90 | # Evaluate the test. |
Justin Bogner | 2cfd1fe | 2014-09-03 06:01:52 +0000 | [diff] [blame] | 91 | return self._evaluate_test(test, use_verify, lit_config) |
Daniel Dunbar | f51f031 | 2013-02-05 21:03:25 +0000 | [diff] [blame] | 92 | |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 93 | def _make_report(self, cmd, out, err, rc): |
| 94 | report = "Command: %s\n" % cmd |
| 95 | report += "Exit Code: %d\n" % rc |
| 96 | if out: |
| 97 | report += "Standard Output:\n--\n%s--\n" % out |
| 98 | if err: |
| 99 | report += "Standard Error:\n--\n%s--\n" % err |
| 100 | report += '\n' |
| 101 | return cmd, report, rc |
| 102 | |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 103 | def _build(self, exec_path, source_path, compile_only=False, |
| 104 | use_verify=False): |
| 105 | cmd = [self.cxx_under_test, '-o', exec_path, |
| 106 | source_path] + self.cpp_flags |
| 107 | |
| 108 | if compile_only: |
| 109 | cmd += ['-c'] |
| 110 | else: |
| 111 | cmd += self.ld_flags |
| 112 | |
| 113 | if use_verify: |
| 114 | cmd += ['-Xclang', '-verify'] |
| 115 | |
Eric Fiselier | e620b5e | 2014-11-25 03:03:32 +0000 | [diff] [blame] | 116 | out, err, rc = lit.util.executeCommand(cmd) |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 117 | return self._make_report(cmd, out, err, rc) |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 118 | |
| 119 | def _clean(self, exec_path): |
| 120 | os.remove(exec_path) |
| 121 | |
| 122 | def _run(self, exec_path, lit_config, in_dir=None): |
| 123 | cmd = [] |
| 124 | if self.exec_env: |
| 125 | cmd.append('env') |
| 126 | cmd.extend('%s=%s' % (name, value) |
| 127 | for name,value in self.exec_env.items()) |
| 128 | cmd.append(exec_path) |
| 129 | if lit_config.useValgrind: |
| 130 | cmd = lit_config.valgrindArgs + cmd |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 131 | out, err, rc = lit.util.executeCommand(cmd, cwd=in_dir) |
| 132 | return self._make_report(cmd, out, err, rc) |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 133 | |
Justin Bogner | 2cfd1fe | 2014-09-03 06:01:52 +0000 | [diff] [blame] | 134 | def _evaluate_test(self, test, use_verify, lit_config): |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 135 | name = test.path_in_suite[-1] |
| 136 | source_path = test.getSourcePath() |
Howard Hinnant | 3778f27 | 2013-01-14 17:12:54 +0000 | [diff] [blame] | 137 | source_dir = os.path.dirname(source_path) |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 138 | |
| 139 | # Check what kind of test this is. |
| 140 | assert name.endswith('.pass.cpp') or name.endswith('.fail.cpp') |
| 141 | expected_compile_fail = name.endswith('.fail.cpp') |
| 142 | |
| 143 | # If this is a compile (failure) test, build it and check for failure. |
| 144 | if expected_compile_fail: |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 145 | cmd, report, rc = self._build('/dev/null', source_path, |
| 146 | compile_only=True, |
| 147 | use_verify=use_verify) |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 148 | expected_rc = 0 if use_verify else 1 |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 149 | if rc == expected_rc: |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 150 | return lit.Test.PASS, "" |
| 151 | else: |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 152 | return lit.Test.FAIL, report + 'Expected compilation to fail!\n' |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 153 | else: |
| 154 | exec_file = tempfile.NamedTemporaryFile(suffix="exe", delete=False) |
| 155 | exec_path = exec_file.name |
| 156 | exec_file.close() |
| 157 | |
| 158 | try: |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 159 | cmd, report, rc = self._build(exec_path, source_path) |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 160 | compile_cmd = cmd |
| 161 | if rc != 0: |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 162 | report += "Compilation failed unexpectedly!" |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 163 | return lit.Test.FAIL, report |
| 164 | |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 165 | cmd, report, rc = self._run(exec_path, lit_config, |
| 166 | source_dir) |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 167 | if rc != 0: |
Eric Fiselier | 67945b6 | 2014-12-07 04:28:50 +0000 | [diff] [blame] | 168 | report = "Compiled With: %s\n%s" % (compile_cmd, report) |
| 169 | report += "Compiled test failed unexpectedly!" |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 170 | return lit.Test.FAIL, report |
| 171 | finally: |
| 172 | try: |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 173 | # Note that cleanup of exec_file happens in `_clean()`. If |
| 174 | # you override this, cleanup is your reponsibility. |
| 175 | self._clean(exec_path) |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 176 | except: |
| 177 | pass |
| 178 | return lit.Test.PASS, "" |
| 179 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 180 | |
| 181 | class Configuration(object): |
| 182 | def __init__(self, lit_config, config): |
| 183 | self.lit_config = lit_config |
| 184 | self.config = config |
| 185 | self.cxx = None |
| 186 | self.src_root = None |
| 187 | self.obj_root = None |
| 188 | self.env = {} |
Eric Fiselier | cf82c1e | 2014-11-24 23:46:42 +0000 | [diff] [blame] | 189 | self.compile_flags = ['-nostdinc++'] |
| 190 | self.link_flags = ['-nodefaultlibs'] |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 191 | self.use_system_lib = False |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 192 | self.use_clang_verify = False |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 193 | |
| 194 | if platform.system() not in ('Darwin', 'FreeBSD', 'Linux'): |
| 195 | self.lit_config.fatal("unrecognized system") |
| 196 | |
| 197 | def get_lit_conf(self, name, default=None): |
| 198 | val = self.lit_config.params.get(name, None) |
| 199 | if val is None: |
| 200 | val = getattr(self.config, name, None) |
| 201 | if val is None: |
| 202 | val = default |
| 203 | return val |
| 204 | |
Eric Fiselier | 9cfa8b7 | 2014-12-07 08:52:19 +0000 | [diff] [blame] | 205 | def get_lit_bool(self, name, default=None): |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 206 | conf = self.get_lit_conf(name) |
| 207 | if conf is None: |
Eric Fiselier | 9cfa8b7 | 2014-12-07 08:52:19 +0000 | [diff] [blame] | 208 | return default |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 209 | if conf.lower() in ('1', 'true'): |
| 210 | return True |
| 211 | if conf.lower() in ('', '0', 'false'): |
| 212 | return False |
| 213 | self.lit_config.fatal( |
| 214 | "parameter '{}' should be true or false".format(name)) |
| 215 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 216 | def configure(self): |
| 217 | self.configure_cxx() |
Eric Fiselier | b92da3f | 2014-12-06 21:13:15 +0000 | [diff] [blame] | 218 | self.probe_cxx() |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 219 | self.configure_triple() |
| 220 | self.configure_src_root() |
| 221 | self.configure_obj_root() |
| 222 | self.configure_use_system_lib() |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 223 | self.configure_use_clang_verify() |
Eric Fiselier | b967e32 | 2014-12-07 00:34:23 +0000 | [diff] [blame] | 224 | self.configure_env() |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 225 | self.configure_std_flag() |
| 226 | self.configure_compile_flags() |
| 227 | self.configure_link_flags() |
| 228 | self.configure_sanitizer() |
| 229 | self.configure_features() |
Eric Fiselier | cf82c1e | 2014-11-24 23:46:42 +0000 | [diff] [blame] | 230 | # Print the final compile and link flags. |
| 231 | self.lit_config.note('Using compile flags: %s' % self.compile_flags) |
| 232 | self.lit_config.note('Using link flags: %s' % self.link_flags) |
| 233 | # Print as list to prevent "set([...])" from being printed. |
| 234 | self.lit_config.note('Using available_features: %s' % |
| 235 | list(self.config.available_features)) |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 236 | |
| 237 | def get_test_format(self): |
| 238 | return LibcxxTestFormat( |
| 239 | self.cxx, |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 240 | self.use_clang_verify, |
Eric Fiselier | cf82c1e | 2014-11-24 23:46:42 +0000 | [diff] [blame] | 241 | cpp_flags=self.compile_flags, |
| 242 | ld_flags=self.link_flags, |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 243 | exec_env=self.env) |
| 244 | |
| 245 | def configure_cxx(self): |
| 246 | # Gather various compiler parameters. |
| 247 | self.cxx = self.get_lit_conf('cxx_under_test') |
| 248 | |
| 249 | # If no specific cxx_under_test was given, attempt to infer it as |
| 250 | # clang++. |
| 251 | if self.cxx is None: |
| 252 | clangxx = lit.util.which('clang++', |
| 253 | self.config.environment['PATH']) |
| 254 | if clangxx: |
| 255 | self.cxx = clangxx |
| 256 | self.lit_config.note( |
| 257 | "inferred cxx_under_test as: %r" % self.cxx) |
| 258 | if not self.cxx: |
| 259 | self.lit_config.fatal('must specify user parameter cxx_under_test ' |
| 260 | '(e.g., --param=cxx_under_test=clang++)') |
| 261 | |
Eric Fiselier | b92da3f | 2014-12-06 21:13:15 +0000 | [diff] [blame] | 262 | def probe_cxx(self): |
| 263 | # Dump all of the predefined macros |
| 264 | dump_macro_cmd = [self.cxx, '-dM', '-E', '-x', 'c++', '/dev/null'] |
| 265 | out, err, rc = lit.util.executeCommand(dump_macro_cmd) |
| 266 | if rc != 0: |
| 267 | self.lit_config.warning('Failed to dump macros for compiler: %s' % |
| 268 | self.cxx) |
| 269 | return |
| 270 | # Create a dict containing all the predefined macros. |
| 271 | macros = {} |
| 272 | lines = [l.strip() for l in out.split('\n') if l.strip()] |
| 273 | for l in lines: |
| 274 | assert l.startswith('#define ') |
| 275 | l = l[len('#define '):] |
| 276 | macro, _, value = l.partition(' ') |
| 277 | macros[macro] = value |
| 278 | # Add compiler information to available features. |
| 279 | compiler_name = None |
| 280 | major_ver = minor_ver = None |
| 281 | if '__clang__' in macros.keys(): |
| 282 | compiler_name = 'clang' |
| 283 | # Treat apple's llvm fork differently. |
Eric Fiselier | 9db4635 | 2014-12-06 22:49:38 +0000 | [diff] [blame] | 284 | if '__apple_build_version__' in macros.keys(): |
Eric Fiselier | b92da3f | 2014-12-06 21:13:15 +0000 | [diff] [blame] | 285 | compiler_name = 'apple-clang' |
| 286 | major_ver = macros['__clang_major__'] |
| 287 | minor_ver = macros['__clang_minor__'] |
| 288 | elif '__GNUC__' in macros.keys(): |
| 289 | compiler_name = 'gcc' |
| 290 | major_ver = macros['__GNUC__'] |
| 291 | minor_ver = macros['__GNUC_MINOR__'] |
| 292 | else: |
| 293 | self.lit_config.warning('Failed to detect compiler for cxx: %s' % |
| 294 | self.cxx) |
| 295 | if compiler_name is not None: |
| 296 | self.config.available_features.add(compiler_name) |
| 297 | self.config.available_features.add('%s-%s.%s' % ( |
| 298 | compiler_name, major_ver, minor_ver)) |
| 299 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 300 | def configure_src_root(self): |
| 301 | self.src_root = self.get_lit_conf( |
| 302 | 'libcxx_src_root', os.path.dirname(self.config.test_source_root)) |
| 303 | |
| 304 | def configure_obj_root(self): |
| 305 | self.obj_root = self.get_lit_conf('libcxx_obj_root', self.src_root) |
| 306 | |
| 307 | def configure_use_system_lib(self): |
| 308 | # This test suite supports testing against either the system library or |
| 309 | # the locally built one; the former mode is useful for testing ABI |
| 310 | # compatibility between the current headers and a shipping dynamic |
| 311 | # library. |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 312 | self.use_system_lib = self.get_lit_bool('use_system_lib') |
| 313 | if self.use_system_lib is None: |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 314 | # Default to testing against the locally built libc++ library. |
| 315 | self.use_system_lib = False |
| 316 | self.lit_config.note( |
| 317 | "inferred use_system_lib as: %r" % self.use_system_lib) |
| 318 | |
Justin Bogner | 33a2a2e | 2014-09-03 04:32:08 +0000 | [diff] [blame] | 319 | def configure_use_clang_verify(self): |
| 320 | '''If set, run clang with -verify on failing tests.''' |
| 321 | self.use_clang_verify = self.get_lit_bool('use_clang_verify') |
| 322 | if self.use_clang_verify is None: |
| 323 | # TODO: Default this to True when using clang. |
| 324 | self.use_clang_verify = False |
| 325 | self.lit_config.note( |
| 326 | "inferred use_clang_verify as: %r" % self.use_clang_verify) |
| 327 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 328 | def configure_features(self): |
Jonathan Roelofs | b352db7 | 2014-09-05 19:03:46 +0000 | [diff] [blame] | 329 | additional_features = self.get_lit_conf('additional_features') |
| 330 | if additional_features: |
| 331 | for f in additional_features.split(','): |
| 332 | self.config.available_features.add(f.strip()) |
Jonathan Roelofs | 3547c54 | 2014-09-05 17:21:57 +0000 | [diff] [blame] | 333 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 334 | # Figure out which of the required locales we support |
| 335 | locales = { |
| 336 | 'Darwin': { |
| 337 | 'en_US.UTF-8': 'en_US.UTF-8', |
| 338 | 'cs_CZ.ISO8859-2': 'cs_CZ.ISO8859-2', |
| 339 | 'fr_FR.UTF-8': 'fr_FR.UTF-8', |
| 340 | 'fr_CA.ISO8859-1': 'cs_CZ.ISO8859-1', |
| 341 | 'ru_RU.UTF-8': 'ru_RU.UTF-8', |
| 342 | 'zh_CN.UTF-8': 'zh_CN.UTF-8', |
| 343 | }, |
| 344 | 'FreeBSD': { |
| 345 | 'en_US.UTF-8': 'en_US.UTF-8', |
| 346 | 'cs_CZ.ISO8859-2': 'cs_CZ.ISO8859-2', |
| 347 | 'fr_FR.UTF-8': 'fr_FR.UTF-8', |
| 348 | 'fr_CA.ISO8859-1': 'fr_CA.ISO8859-1', |
| 349 | 'ru_RU.UTF-8': 'ru_RU.UTF-8', |
| 350 | 'zh_CN.UTF-8': 'zh_CN.UTF-8', |
| 351 | }, |
| 352 | 'Linux': { |
| 353 | 'en_US.UTF-8': 'en_US.UTF-8', |
| 354 | 'cs_CZ.ISO8859-2': 'cs_CZ.ISO-8859-2', |
| 355 | 'fr_FR.UTF-8': 'fr_FR.UTF-8', |
| 356 | 'fr_CA.ISO8859-1': 'fr_CA.ISO-8859-1', |
| 357 | 'ru_RU.UTF-8': 'ru_RU.UTF-8', |
| 358 | 'zh_CN.UTF-8': 'zh_CN.UTF-8', |
| 359 | }, |
| 360 | 'Windows': { |
| 361 | 'en_US.UTF-8': 'English_United States.1252', |
| 362 | 'cs_CZ.ISO8859-2': 'Czech_Czech Republic.1250', |
| 363 | 'fr_FR.UTF-8': 'French_France.1252', |
| 364 | 'fr_CA.ISO8859-1': 'French_Canada.1252', |
| 365 | 'ru_RU.UTF-8': 'Russian_Russia.1251', |
| 366 | 'zh_CN.UTF-8': 'Chinese_China.936', |
| 367 | }, |
| 368 | } |
| 369 | |
| 370 | default_locale = locale.setlocale(locale.LC_ALL) |
| 371 | for feature, loc in locales[platform.system()].items(): |
| 372 | try: |
| 373 | locale.setlocale(locale.LC_ALL, loc) |
Eric Fiselier | 561dfb5 | 2014-08-23 04:02:21 +0000 | [diff] [blame] | 374 | self.config.available_features.add('locale.{0}'.format(feature)) |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 375 | except: |
Eric Fiselier | 561dfb5 | 2014-08-23 04:02:21 +0000 | [diff] [blame] | 376 | self.lit_config.warning('The locale {0} is not supported by ' |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 377 | 'your platform. Some tests will be ' |
| 378 | 'unsupported.'.format(loc)) |
| 379 | locale.setlocale(locale.LC_ALL, default_locale) |
| 380 | |
| 381 | # Write an "available feature" that combines the triple when |
| 382 | # use_system_lib is enabled. This is so that we can easily write XFAIL |
| 383 | # markers for tests that are known to fail with versions of libc++ as |
| 384 | # were shipped with a particular triple. |
| 385 | if self.use_system_lib: |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 386 | self.config.available_features.add( |
Eric Fiselier | bb19141 | 2014-10-27 22:14:25 +0000 | [diff] [blame] | 387 | 'with_system_lib=%s' % self.config.target_triple) |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 388 | |
Eric Fiselier | b9f9973 | 2014-12-06 21:02:58 +0000 | [diff] [blame] | 389 | # TODO 6/12/2014: Remove these once the buildmaster restarts. |
| 390 | # Removing before will break the bot that tests libcpp-has-no-threads. |
| 391 | if 'libcpp-has-no-threads' in self.config.available_features \ |
| 392 | and '-D_LIBCPP_HAS_NO_THREADS' not in self.compile_flags: |
Jonathan Roelofs | 3547c54 | 2014-09-05 17:21:57 +0000 | [diff] [blame] | 393 | self.compile_flags += ['-D_LIBCPP_HAS_NO_THREADS'] |
| 394 | |
Eric Fiselier | b9f9973 | 2014-12-06 21:02:58 +0000 | [diff] [blame] | 395 | if 'libcpp-has-no-monotonic-clock' in self.config.available_features \ |
| 396 | and '-D_LIBCPP_HAS_NO_MONOTONIC_CLOCK' not in self.compile_flags: |
Jonathan Roelofs | 3547c54 | 2014-09-05 17:21:57 +0000 | [diff] [blame] | 397 | self.compile_flags += ['-D_LIBCPP_HAS_NO_MONOTONIC_CLOCK'] |
| 398 | |
Eric Fiselier | 54841517 | 2014-11-21 08:02:38 +0000 | [diff] [blame] | 399 | # Some linux distributions have different locale data than others. |
| 400 | # Insert the distributions name and name-version into the available |
| 401 | # features to allow tests to XFAIL on them. |
| 402 | if sys.platform.startswith('linux'): |
Eric Fiselier | a77ccfe | 2014-11-21 08:54:35 +0000 | [diff] [blame] | 403 | name, ver, _ = platform.linux_distribution() |
| 404 | name = name.lower().strip() |
| 405 | ver = ver.lower().strip() |
| 406 | self.config.available_features.add(name) |
| 407 | self.config.available_features.add('%s-%s' % (name, ver)) |
Eric Fiselier | 54841517 | 2014-11-21 08:02:38 +0000 | [diff] [blame] | 408 | |
Jonathan Roelofs | 256ecc3 | 2014-12-11 18:35:36 +0000 | [diff] [blame] | 409 | # Simulator testing can take a really long time for some of these tests |
| 410 | # so add a feature check so we can REQUIRES: long_tests in them |
| 411 | self.long_tests = self.get_lit_bool('long_tests') |
| 412 | if self.long_tests is None: |
| 413 | # Default to running long tests. |
| 414 | self.long_tests = True |
| 415 | self.lit_config.note( |
| 416 | "inferred long_tests as: %r" % self.long_tests) |
| 417 | |
| 418 | if self.long_tests: |
| 419 | self.config.available_features.add('long_tests') |
| 420 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 421 | def configure_compile_flags(self): |
| 422 | # Configure extra compiler flags. |
| 423 | self.compile_flags += ['-I' + self.src_root + '/include', |
| 424 | '-I' + self.src_root + '/test/support'] |
Eric Fiselier | 460b224 | 2014-10-23 22:57:56 +0000 | [diff] [blame] | 425 | if sys.platform.startswith('linux'): |
Eric Fiselier | 6f9da55 | 2014-10-18 01:15:17 +0000 | [diff] [blame] | 426 | self.compile_flags += ['-D__STDC_FORMAT_MACROS', |
| 427 | '-D__STDC_LIMIT_MACROS', |
| 428 | '-D__STDC_CONSTANT_MACROS'] |
Eric Fiselier | 7a68749 | 2014-12-12 02:36:23 +0000 | [diff] [blame^] | 429 | enable_exceptions = self.get_lit_bool('enable_exceptions', True) |
| 430 | if enable_exceptions: |
| 431 | self.config.available_features.add('exceptions') |
| 432 | else: |
| 433 | self.compile_flags += ['-fno-exceptions'] |
| 434 | enable_rtti = self.get_lit_bool('enable_rtti', True) |
| 435 | if enable_rtti: |
| 436 | self.config.available_features.add('rtti') |
| 437 | else: |
| 438 | self.compile_flags += ['-fno-rtti', '-D_LIBCPP_NO_RTTI'] |
Eric Fiselier | b9f9973 | 2014-12-06 21:02:58 +0000 | [diff] [blame] | 439 | # Configure threading features. |
Eric Fiselier | 9cfa8b7 | 2014-12-07 08:52:19 +0000 | [diff] [blame] | 440 | enable_threads = self.get_lit_bool('enable_threads', True) |
| 441 | enable_monotonic_clock = self.get_lit_bool('enable_monotonic_clock', True) |
Eric Fiselier | b9f9973 | 2014-12-06 21:02:58 +0000 | [diff] [blame] | 442 | if not enable_threads: |
| 443 | self.compile_flags += ['-D_LIBCPP_HAS_NO_THREADS'] |
| 444 | self.config.available_features.add('libcpp-has-no-threads') |
| 445 | if not enable_monotonic_clock: |
| 446 | self.compile_flags += ['-D_LIBCPP_HAS_NO_MONOTONIC_CLOCK'] |
| 447 | self.config.available_features.add('libcpp-has-no-monotonic-clock') |
| 448 | elif not enable_monotonic_clock: |
| 449 | self.lit_config.fatal('enable_monotonic_clock cannot be false when' |
| 450 | ' enable_threads is true.') |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 451 | |
Eric Fiselier | 7a68749 | 2014-12-12 02:36:23 +0000 | [diff] [blame^] | 452 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 453 | def configure_link_flags(self): |
Eric Fiselier | 6f9da55 | 2014-10-18 01:15:17 +0000 | [diff] [blame] | 454 | # Configure library search paths |
Eric Fiselier | a63c149 | 2014-10-19 00:42:41 +0000 | [diff] [blame] | 455 | abi_library_path = self.get_lit_conf('abi_library_path', '') |
Eric Fiselier | a63c149 | 2014-10-19 00:42:41 +0000 | [diff] [blame] | 456 | if not self.use_system_lib: |
Eric Fiselier | a1c73a6 | 2014-12-06 22:08:51 +0000 | [diff] [blame] | 457 | self.link_flags += ['-L' + self.obj_root + '/lib'] |
| 458 | self.link_flags += ['-Wl,-rpath,' + self.obj_root + '/lib'] |
Eric Fiselier | a63c149 | 2014-10-19 00:42:41 +0000 | [diff] [blame] | 459 | if abi_library_path: |
| 460 | self.link_flags += ['-L' + abi_library_path, |
Eric Fiselier | a1c73a6 | 2014-12-06 22:08:51 +0000 | [diff] [blame] | 461 | '-Wl,-rpath,' + abi_library_path] |
Eric Fiselier | 6f9da55 | 2014-10-18 01:15:17 +0000 | [diff] [blame] | 462 | # Configure libraries |
| 463 | self.link_flags += ['-lc++'] |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 464 | link_flags_str = self.get_lit_conf('link_flags') |
| 465 | if link_flags_str is None: |
| 466 | cxx_abi = self.get_lit_conf('cxx_abi', 'libcxxabi') |
| 467 | if cxx_abi == 'libstdc++': |
| 468 | self.link_flags += ['-lstdc++'] |
| 469 | elif cxx_abi == 'libsupc++': |
| 470 | self.link_flags += ['-lsupc++'] |
| 471 | elif cxx_abi == 'libcxxabi': |
| 472 | self.link_flags += ['-lc++abi'] |
| 473 | elif cxx_abi == 'libcxxrt': |
| 474 | self.link_flags += ['-lcxxrt'] |
| 475 | elif cxx_abi == 'none': |
| 476 | pass |
| 477 | else: |
| 478 | self.lit_config.fatal( |
| 479 | 'C++ ABI setting %s unsupported for tests' % cxx_abi) |
| 480 | |
| 481 | if sys.platform == 'darwin': |
| 482 | self.link_flags += ['-lSystem'] |
Eric Fiselier | 460b224 | 2014-10-23 22:57:56 +0000 | [diff] [blame] | 483 | elif sys.platform.startswith('linux'): |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 484 | self.link_flags += ['-lgcc_eh', '-lc', '-lm', '-lpthread', |
| 485 | '-lrt', '-lgcc_s'] |
| 486 | elif sys.platform.startswith('freebsd'): |
| 487 | self.link_flags += ['-lc', '-lm', '-pthread', '-lgcc_s'] |
| 488 | else: |
Eric Fiselier | 6f9da55 | 2014-10-18 01:15:17 +0000 | [diff] [blame] | 489 | self.lit_config.fatal("unrecognized system: %r" % sys.platform) |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 490 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 491 | if link_flags_str: |
| 492 | self.link_flags += shlex.split(link_flags_str) |
| 493 | |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 494 | |
| 495 | def configure_std_flag(self): |
| 496 | # Try and get the std version from the command line. Fall back to |
| 497 | # default given in lit.site.cfg is not present. If default is not |
| 498 | # present then force c++11. |
| 499 | std = self.get_lit_conf('std') |
| 500 | if std is None: |
| 501 | std = 'c++11' |
| 502 | self.lit_config.note('using default std: \'-std=c++11\'') |
Eric Fiselier | 561dfb5 | 2014-08-23 04:02:21 +0000 | [diff] [blame] | 503 | self.compile_flags += ['-std={0}'.format(std)] |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 504 | self.config.available_features.add(std) |
| 505 | |
| 506 | def configure_sanitizer(self): |
| 507 | san = self.get_lit_conf('llvm_use_sanitizer', '').strip() |
| 508 | if san: |
Eric Fiselier | b941b50 | 2014-11-14 02:47:08 +0000 | [diff] [blame] | 509 | # Search for llvm-symbolizer along the compiler path first |
| 510 | # and then along the PATH env variable. |
| 511 | symbolizer_search_paths = os.environ.get('PATH', '') |
| 512 | cxx_path = lit.util.which(self.cxx) |
| 513 | if cxx_path is not None: |
| 514 | symbolizer_search_paths = os.path.dirname(cxx_path) + \ |
| 515 | os.pathsep + symbolizer_search_paths |
| 516 | llvm_symbolizer = lit.util.which('llvm-symbolizer', |
| 517 | symbolizer_search_paths) |
| 518 | # Setup the sanitizer compile flags |
Eric Fiselier | 0425c7c | 2014-11-14 22:18:03 +0000 | [diff] [blame] | 519 | self.compile_flags += ['-g', '-fno-omit-frame-pointer'] |
Eric Fiselier | 460b224 | 2014-10-23 22:57:56 +0000 | [diff] [blame] | 520 | if sys.platform.startswith('linux'): |
Eric Fiselier | 062e6ee | 2014-10-23 02:54:15 +0000 | [diff] [blame] | 521 | self.link_flags += ['-ldl'] |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 522 | if san == 'Address': |
| 523 | self.compile_flags += ['-fsanitize=address'] |
Eric Fiselier | b941b50 | 2014-11-14 02:47:08 +0000 | [diff] [blame] | 524 | if llvm_symbolizer is not None: |
| 525 | self.env['ASAN_SYMBOLIZER_PATH'] = llvm_symbolizer |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 526 | self.config.available_features.add('asan') |
| 527 | elif san == 'Memory' or san == 'MemoryWithOrigins': |
| 528 | self.compile_flags += ['-fsanitize=memory'] |
| 529 | if san == 'MemoryWithOrigins': |
| 530 | self.compile_flags += ['-fsanitize-memory-track-origins'] |
Eric Fiselier | b941b50 | 2014-11-14 02:47:08 +0000 | [diff] [blame] | 531 | if llvm_symbolizer is not None: |
| 532 | self.env['MSAN_SYMBOLIZER_PATH'] = llvm_symbolizer |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 533 | self.config.available_features.add('msan') |
Eric Fiselier | 04c1b74 | 2014-10-16 23:21:59 +0000 | [diff] [blame] | 534 | elif san == 'Undefined': |
| 535 | self.compile_flags += ['-fsanitize=undefined', |
| 536 | '-fno-sanitize=vptr,function', |
Eric Fiselier | bc2d632 | 2014-11-14 02:07:52 +0000 | [diff] [blame] | 537 | '-fno-sanitize-recover', '-O3'] |
Eric Fiselier | 04c1b74 | 2014-10-16 23:21:59 +0000 | [diff] [blame] | 538 | self.config.available_features.add('ubsan') |
Eric Fiselier | 9b681f6 | 2014-11-18 21:26:45 +0000 | [diff] [blame] | 539 | elif san == 'Thread': |
| 540 | self.compile_flags += ['-fsanitize=thread'] |
| 541 | self.config.available_features.add('tsan') |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 542 | else: |
| 543 | self.lit_config.fatal('unsupported value for ' |
Eric Fiselier | 561dfb5 | 2014-08-23 04:02:21 +0000 | [diff] [blame] | 544 | 'libcxx_use_san: {0}'.format(san)) |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 545 | |
| 546 | def configure_triple(self): |
| 547 | # Get or infer the target triple. |
| 548 | self.config.target_triple = self.get_lit_conf('target_triple') |
| 549 | # If no target triple was given, try to infer it from the compiler |
| 550 | # under test. |
| 551 | if not self.config.target_triple: |
Eric Fiselier | bb19141 | 2014-10-27 22:14:25 +0000 | [diff] [blame] | 552 | target_triple = lit.util.capture( |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 553 | [self.cxx, '-dumpmachine']).strip() |
Eric Fiselier | bb19141 | 2014-10-27 22:14:25 +0000 | [diff] [blame] | 554 | # Drop sub-major version components from the triple, because the |
| 555 | # current XFAIL handling expects exact matches for feature checks. |
Eric Fiselier | d6b46b4 | 2014-10-28 18:03:38 +0000 | [diff] [blame] | 556 | # Example: x86_64-apple-darwin14.0.0 -> x86_64-apple-darwin14 |
Eric Fiselier | bb19141 | 2014-10-27 22:14:25 +0000 | [diff] [blame] | 557 | # The 5th group handles triples greater than 3 parts |
| 558 | # (ex x86_64-pc-linux-gnu). |
| 559 | target_triple = re.sub(r'([^-]+)-([^-]+)-([^.]+)([^-]*)(.*)', |
| 560 | r'\1-\2-\3\5', target_triple) |
| 561 | # linux-gnu is needed in the triple to properly identify linuxes |
| 562 | # that use GLIBC. Handle redhat and opensuse triples as special |
| 563 | # cases and append the missing `-gnu` portion. |
| 564 | if target_triple.endswith('redhat-linux') or \ |
| 565 | target_triple.endswith('suse-linux'): |
| 566 | target_triple += '-gnu' |
| 567 | self.config.target_triple = target_triple |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 568 | self.lit_config.note( |
| 569 | "inferred target_triple as: %r" % self.config.target_triple) |
| 570 | |
Eric Fiselier | b967e32 | 2014-12-07 00:34:23 +0000 | [diff] [blame] | 571 | def configure_env(self): |
| 572 | if sys.platform == 'darwin' and not self.use_system_lib: |
| 573 | self.env['DYLD_LIBRARY_PATH'] = os.path.join(self.obj_root, 'lib') |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 574 | |
Daniel Dunbar | 42ea463 | 2010-09-15 03:57:04 +0000 | [diff] [blame] | 575 | # name: The name of this test suite. |
| 576 | config.name = 'libc++' |
| 577 | |
| 578 | # suffixes: A list of file extensions to treat as test files. |
| 579 | config.suffixes = ['.cpp'] |
| 580 | |
| 581 | # test_source_root: The root path where tests are located. |
| 582 | config.test_source_root = os.path.dirname(__file__) |
| 583 | |
Dan Albert | 86b75a4 | 2014-11-24 22:24:06 +0000 | [diff] [blame] | 584 | cfg_variant = getattr(config, 'configuration_variant', '') |
| 585 | if cfg_variant: |
| 586 | print 'Using configuration variant: %s' % cfg_variant |
| 587 | |
| 588 | # Construct an object of the type named `<VARIANT>Configuration`. |
| 589 | configuration = globals()['%sConfiguration' % cfg_variant](lit_config, config) |
Dan Albert | ae2526b | 2014-08-21 17:30:44 +0000 | [diff] [blame] | 590 | configuration.configure() |
| 591 | config.test_format = configuration.get_test_format() |