2013-02-12 19:28:51 +00:00
|
|
|
# -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80:
|
2010-09-15 03:57:04 +00:00
|
|
|
|
|
|
|
# Configuration file for the 'lit' test runner.
|
|
|
|
|
2013-08-30 19:52:12 +00:00
|
|
|
import errno
|
2014-08-04 18:44:48 +00:00
|
|
|
import locale
|
2010-09-15 03:57:04 +00:00
|
|
|
import os
|
|
|
|
import platform
|
2013-08-30 19:52:12 +00:00
|
|
|
import re
|
|
|
|
import shlex
|
2010-09-15 03:57:04 +00:00
|
|
|
import signal
|
|
|
|
import subprocess
|
2013-08-30 19:52:12 +00:00
|
|
|
import sys
|
|
|
|
import tempfile
|
2013-01-14 17:12:54 +00:00
|
|
|
import time
|
2010-09-15 03:57:04 +00:00
|
|
|
|
2013-08-09 14:44:11 +00:00
|
|
|
import lit.Test
|
|
|
|
import lit.formats
|
|
|
|
import lit.util
|
|
|
|
|
2010-09-15 03:57:04 +00:00
|
|
|
class LibcxxTestFormat(lit.formats.FileBasedTest):
|
|
|
|
"""
|
|
|
|
Custom test format handler for use with the test format use by libc++.
|
|
|
|
|
|
|
|
Tests fall into two categories:
|
|
|
|
FOO.pass.cpp - Executable test which should compile, run, and exit with
|
|
|
|
code 0.
|
|
|
|
FOO.fail.cpp - Negative test case which is expected to fail compilation.
|
|
|
|
"""
|
|
|
|
|
2014-09-03 04:32:08 +00:00
|
|
|
def __init__(self, cxx_under_test, use_verify_for_fail,
|
|
|
|
cpp_flags, ld_flags, exec_env):
|
2010-09-15 04:11:29 +00:00
|
|
|
self.cxx_under_test = cxx_under_test
|
2014-09-03 04:32:08 +00:00
|
|
|
self.use_verify_for_fail = use_verify_for_fail
|
2010-09-15 04:31:58 +00:00
|
|
|
self.cpp_flags = list(cpp_flags)
|
|
|
|
self.ld_flags = list(ld_flags)
|
2013-02-05 18:03:49 +00:00
|
|
|
self.exec_env = dict(exec_env)
|
2010-09-15 03:57:04 +00:00
|
|
|
|
2013-01-14 17:12:54 +00:00
|
|
|
def execute_command(self, command, in_dir=None):
|
|
|
|
kwargs = {
|
|
|
|
'stdin' :subprocess.PIPE,
|
|
|
|
'stdout':subprocess.PIPE,
|
|
|
|
'stderr':subprocess.PIPE,
|
|
|
|
}
|
|
|
|
if in_dir:
|
|
|
|
kwargs['cwd'] = in_dir
|
|
|
|
p = subprocess.Popen(command, **kwargs)
|
2010-09-15 03:57:04 +00:00
|
|
|
out,err = p.communicate()
|
|
|
|
exitCode = p.wait()
|
|
|
|
|
|
|
|
# Detect Ctrl-C in subprocess.
|
|
|
|
if exitCode == -signal.SIGINT:
|
|
|
|
raise KeyboardInterrupt
|
|
|
|
|
|
|
|
return out, err, exitCode
|
|
|
|
|
|
|
|
def execute(self, test, lit_config):
|
2013-01-14 17:12:54 +00:00
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
return self._execute(test, lit_config)
|
|
|
|
except OSError, oe:
|
|
|
|
if oe.errno != errno.ETXTBSY:
|
|
|
|
raise
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
def _execute(self, test, lit_config):
|
2013-02-05 21:03:25 +00:00
|
|
|
# Extract test metadata from the test file.
|
|
|
|
requires = []
|
2014-08-18 06:43:06 +00:00
|
|
|
unsupported = []
|
2014-09-03 06:01:52 +00:00
|
|
|
use_verify = False
|
2013-02-05 21:03:25 +00:00
|
|
|
with open(test.getSourcePath()) as f:
|
|
|
|
for ln in f:
|
|
|
|
if 'XFAIL:' in ln:
|
|
|
|
items = ln[ln.index('XFAIL:') + 6:].split(',')
|
2013-08-21 23:06:32 +00:00
|
|
|
test.xfails.extend([s.strip() for s in items])
|
2013-02-05 21:03:25 +00:00
|
|
|
elif 'REQUIRES:' in ln:
|
|
|
|
items = ln[ln.index('REQUIRES:') + 9:].split(',')
|
|
|
|
requires.extend([s.strip() for s in items])
|
2014-08-18 06:43:06 +00:00
|
|
|
elif 'UNSUPPORTED:' in ln:
|
|
|
|
items = ln[ln.index('UNSUPPORTED:') + 12:].split(',')
|
|
|
|
unsupported.extend([s.strip() for s in items])
|
2014-09-03 06:01:52 +00:00
|
|
|
elif 'USE_VERIFY' in ln and self.use_verify_for_fail:
|
|
|
|
use_verify = True
|
2014-07-31 22:56:52 +00:00
|
|
|
elif not ln.strip().startswith("//") and ln.strip():
|
2013-02-05 21:03:25 +00:00
|
|
|
# Stop at the first non-empty line that is not a C++
|
|
|
|
# comment.
|
|
|
|
break
|
|
|
|
|
|
|
|
# Check that we have the required features.
|
|
|
|
#
|
|
|
|
# FIXME: For now, this is cribbed from lit.TestRunner, to avoid
|
|
|
|
# introducing a dependency there. What we more ideally would like to do
|
2013-08-21 23:06:32 +00:00
|
|
|
# is lift the "requires" handling to be a core lit framework feature.
|
2013-02-05 21:03:25 +00:00
|
|
|
missing_required_features = [f for f in requires
|
|
|
|
if f not in test.config.available_features]
|
|
|
|
if missing_required_features:
|
|
|
|
return (lit.Test.UNSUPPORTED,
|
|
|
|
"Test requires the following features: %s" % (
|
|
|
|
', '.join(missing_required_features),))
|
|
|
|
|
2014-08-18 06:43:06 +00:00
|
|
|
unsupported_features = [f for f in unsupported
|
|
|
|
if f in test.config.available_features]
|
|
|
|
if unsupported_features:
|
|
|
|
return (lit.Test.UNSUPPORTED,
|
|
|
|
"Test is unsupported with the following features: %s" % (
|
|
|
|
', '.join(unsupported_features),))
|
|
|
|
|
2013-02-05 21:03:25 +00:00
|
|
|
# Evaluate the test.
|
2014-09-03 06:01:52 +00:00
|
|
|
return self._evaluate_test(test, use_verify, lit_config)
|
2013-02-05 21:03:25 +00:00
|
|
|
|
2014-09-03 06:01:52 +00:00
|
|
|
def _evaluate_test(self, test, use_verify, lit_config):
|
2010-09-15 03:57:04 +00:00
|
|
|
name = test.path_in_suite[-1]
|
|
|
|
source_path = test.getSourcePath()
|
2013-01-14 17:12:54 +00:00
|
|
|
source_dir = os.path.dirname(source_path)
|
2010-09-15 03:57:04 +00:00
|
|
|
|
|
|
|
# Check what kind of test this is.
|
|
|
|
assert name.endswith('.pass.cpp') or name.endswith('.fail.cpp')
|
|
|
|
expected_compile_fail = name.endswith('.fail.cpp')
|
|
|
|
|
|
|
|
# If this is a compile (failure) test, build it and check for failure.
|
|
|
|
if expected_compile_fail:
|
|
|
|
cmd = [self.cxx_under_test, '-c',
|
2010-09-15 04:31:58 +00:00
|
|
|
'-o', '/dev/null', source_path] + self.cpp_flags
|
2014-09-03 04:32:08 +00:00
|
|
|
expected_rc = 1
|
2014-09-03 06:01:52 +00:00
|
|
|
if use_verify:
|
2014-09-03 04:32:08 +00:00
|
|
|
cmd += ['-Xclang', '-verify']
|
|
|
|
expected_rc = 0
|
|
|
|
out, err, rc = self.execute_command(cmd)
|
|
|
|
if rc == expected_rc:
|
2010-09-15 03:57:04 +00:00
|
|
|
return lit.Test.PASS, ""
|
|
|
|
else:
|
|
|
|
report = """Command: %s\n""" % ' '.join(["'%s'" % a
|
|
|
|
for a in cmd])
|
2014-09-03 04:32:08 +00:00
|
|
|
report += """Exit Code: %d\n""" % rc
|
2010-09-15 03:57:04 +00:00
|
|
|
if out:
|
|
|
|
report += """Standard Output:\n--\n%s--""" % out
|
|
|
|
if err:
|
|
|
|
report += """Standard Error:\n--\n%s--""" % err
|
|
|
|
report += "\n\nExpected compilation to fail!"
|
2010-09-15 04:31:58 +00:00
|
|
|
return lit.Test.FAIL, report
|
2010-09-15 03:57:04 +00:00
|
|
|
else:
|
|
|
|
exec_file = tempfile.NamedTemporaryFile(suffix="exe", delete=False)
|
|
|
|
exec_path = exec_file.name
|
|
|
|
exec_file.close()
|
|
|
|
|
|
|
|
try:
|
2010-12-10 19:47:54 +00:00
|
|
|
compile_cmd = [self.cxx_under_test, '-o', exec_path,
|
2010-09-15 04:31:58 +00:00
|
|
|
source_path] + self.cpp_flags + self.ld_flags
|
2010-12-10 19:47:54 +00:00
|
|
|
cmd = compile_cmd
|
2010-09-15 03:57:04 +00:00
|
|
|
out, err, exitCode = self.execute_command(cmd)
|
|
|
|
if exitCode != 0:
|
|
|
|
report = """Command: %s\n""" % ' '.join(["'%s'" % a
|
|
|
|
for a in cmd])
|
|
|
|
report += """Exit Code: %d\n""" % exitCode
|
|
|
|
if out:
|
|
|
|
report += """Standard Output:\n--\n%s--""" % out
|
|
|
|
if err:
|
|
|
|
report += """Standard Error:\n--\n%s--""" % err
|
|
|
|
report += "\n\nCompilation failed unexpectedly!"
|
|
|
|
return lit.Test.FAIL, report
|
|
|
|
|
2013-02-05 18:03:49 +00:00
|
|
|
cmd = []
|
|
|
|
if self.exec_env:
|
|
|
|
cmd.append('env')
|
|
|
|
cmd.extend('%s=%s' % (name, value)
|
|
|
|
for name,value in self.exec_env.items())
|
|
|
|
cmd.append(exec_path)
|
2012-08-02 18:36:47 +00:00
|
|
|
if lit_config.useValgrind:
|
|
|
|
cmd = lit_config.valgrindArgs + cmd
|
2013-01-14 17:12:54 +00:00
|
|
|
out, err, exitCode = self.execute_command(cmd, source_dir)
|
2010-09-15 03:57:04 +00:00
|
|
|
if exitCode != 0:
|
2013-02-12 19:28:51 +00:00
|
|
|
report = """Compiled With: %s\n""" % \
|
|
|
|
' '.join(["'%s'" % a for a in compile_cmd])
|
|
|
|
report += """Command: %s\n""" % \
|
|
|
|
' '.join(["'%s'" % a for a in cmd])
|
2010-09-15 03:57:04 +00:00
|
|
|
report += """Exit Code: %d\n""" % exitCode
|
|
|
|
if out:
|
|
|
|
report += """Standard Output:\n--\n%s--""" % out
|
|
|
|
if err:
|
|
|
|
report += """Standard Error:\n--\n%s--""" % err
|
|
|
|
report += "\n\nCompiled test failed unexpectedly!"
|
|
|
|
return lit.Test.FAIL, report
|
|
|
|
finally:
|
|
|
|
try:
|
|
|
|
os.remove(exec_path)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
return lit.Test.PASS, ""
|
|
|
|
|
2014-08-21 17:30:44 +00:00
|
|
|
|
|
|
|
class Configuration(object):
|
|
|
|
def __init__(self, lit_config, config):
|
|
|
|
self.lit_config = lit_config
|
|
|
|
self.config = config
|
|
|
|
self.cxx = None
|
|
|
|
self.src_root = None
|
|
|
|
self.obj_root = None
|
|
|
|
self.env = {}
|
|
|
|
self.compile_flags = []
|
2014-10-18 01:15:17 +00:00
|
|
|
self.library_paths = []
|
2014-08-21 17:30:44 +00:00
|
|
|
self.link_flags = []
|
|
|
|
self.use_system_lib = False
|
2014-09-03 04:32:08 +00:00
|
|
|
self.use_clang_verify = False
|
2014-08-21 17:30:44 +00:00
|
|
|
|
|
|
|
if platform.system() not in ('Darwin', 'FreeBSD', 'Linux'):
|
|
|
|
self.lit_config.fatal("unrecognized system")
|
|
|
|
|
|
|
|
def get_lit_conf(self, name, default=None):
|
|
|
|
val = self.lit_config.params.get(name, None)
|
|
|
|
if val is None:
|
|
|
|
val = getattr(self.config, name, None)
|
|
|
|
if val is None:
|
|
|
|
val = default
|
|
|
|
return val
|
|
|
|
|
2014-09-03 04:32:08 +00:00
|
|
|
def get_lit_bool(self, name):
|
|
|
|
conf = self.get_lit_conf(name)
|
|
|
|
if conf is None:
|
|
|
|
return None
|
|
|
|
if conf.lower() in ('1', 'true'):
|
|
|
|
return True
|
|
|
|
if conf.lower() in ('', '0', 'false'):
|
|
|
|
return False
|
|
|
|
self.lit_config.fatal(
|
|
|
|
"parameter '{}' should be true or false".format(name))
|
|
|
|
|
2014-08-21 17:30:44 +00:00
|
|
|
def configure(self):
|
|
|
|
self.configure_cxx()
|
|
|
|
self.configure_triple()
|
|
|
|
self.configure_src_root()
|
|
|
|
self.configure_obj_root()
|
|
|
|
self.configure_use_system_lib()
|
2014-09-03 04:32:08 +00:00
|
|
|
self.configure_use_clang_verify()
|
2014-08-21 17:30:44 +00:00
|
|
|
self.configure_env()
|
|
|
|
self.configure_std_flag()
|
|
|
|
self.configure_compile_flags()
|
|
|
|
self.configure_link_flags()
|
|
|
|
self.configure_sanitizer()
|
|
|
|
self.configure_features()
|
|
|
|
|
|
|
|
def get_test_format(self):
|
|
|
|
return LibcxxTestFormat(
|
|
|
|
self.cxx,
|
2014-09-03 04:32:08 +00:00
|
|
|
self.use_clang_verify,
|
2014-08-21 17:30:44 +00:00
|
|
|
cpp_flags=['-nostdinc++'] + self.compile_flags,
|
|
|
|
ld_flags=['-nodefaultlibs'] + self.link_flags,
|
|
|
|
exec_env=self.env)
|
|
|
|
|
|
|
|
def configure_cxx(self):
|
|
|
|
# Gather various compiler parameters.
|
|
|
|
self.cxx = self.get_lit_conf('cxx_under_test')
|
|
|
|
|
|
|
|
# If no specific cxx_under_test was given, attempt to infer it as
|
|
|
|
# clang++.
|
|
|
|
if self.cxx is None:
|
|
|
|
clangxx = lit.util.which('clang++',
|
|
|
|
self.config.environment['PATH'])
|
|
|
|
if clangxx:
|
|
|
|
self.cxx = clangxx
|
|
|
|
self.lit_config.note(
|
|
|
|
"inferred cxx_under_test as: %r" % self.cxx)
|
|
|
|
if not self.cxx:
|
|
|
|
self.lit_config.fatal('must specify user parameter cxx_under_test '
|
|
|
|
'(e.g., --param=cxx_under_test=clang++)')
|
|
|
|
|
|
|
|
def configure_src_root(self):
|
|
|
|
self.src_root = self.get_lit_conf(
|
|
|
|
'libcxx_src_root', os.path.dirname(self.config.test_source_root))
|
|
|
|
|
|
|
|
def configure_obj_root(self):
|
|
|
|
self.obj_root = self.get_lit_conf('libcxx_obj_root', self.src_root)
|
|
|
|
|
|
|
|
def configure_use_system_lib(self):
|
|
|
|
# This test suite supports testing against either the system library or
|
|
|
|
# the locally built one; the former mode is useful for testing ABI
|
|
|
|
# compatibility between the current headers and a shipping dynamic
|
|
|
|
# library.
|
2014-09-03 04:32:08 +00:00
|
|
|
self.use_system_lib = self.get_lit_bool('use_system_lib')
|
|
|
|
if self.use_system_lib is None:
|
2014-08-21 17:30:44 +00:00
|
|
|
# Default to testing against the locally built libc++ library.
|
|
|
|
self.use_system_lib = False
|
|
|
|
self.lit_config.note(
|
|
|
|
"inferred use_system_lib as: %r" % self.use_system_lib)
|
|
|
|
|
2014-09-03 04:32:08 +00:00
|
|
|
def configure_use_clang_verify(self):
|
|
|
|
'''If set, run clang with -verify on failing tests.'''
|
|
|
|
self.use_clang_verify = self.get_lit_bool('use_clang_verify')
|
|
|
|
if self.use_clang_verify is None:
|
|
|
|
# TODO: Default this to True when using clang.
|
|
|
|
self.use_clang_verify = False
|
|
|
|
self.lit_config.note(
|
|
|
|
"inferred use_clang_verify as: %r" % self.use_clang_verify)
|
|
|
|
|
2014-08-21 17:30:44 +00:00
|
|
|
def configure_features(self):
|
2014-09-05 19:03:46 +00:00
|
|
|
additional_features = self.get_lit_conf('additional_features')
|
|
|
|
if additional_features:
|
|
|
|
for f in additional_features.split(','):
|
|
|
|
self.config.available_features.add(f.strip())
|
2014-09-05 17:21:57 +00:00
|
|
|
|
2014-08-21 17:30:44 +00:00
|
|
|
# Figure out which of the required locales we support
|
|
|
|
locales = {
|
|
|
|
'Darwin': {
|
|
|
|
'en_US.UTF-8': 'en_US.UTF-8',
|
|
|
|
'cs_CZ.ISO8859-2': 'cs_CZ.ISO8859-2',
|
|
|
|
'fr_FR.UTF-8': 'fr_FR.UTF-8',
|
|
|
|
'fr_CA.ISO8859-1': 'cs_CZ.ISO8859-1',
|
|
|
|
'ru_RU.UTF-8': 'ru_RU.UTF-8',
|
|
|
|
'zh_CN.UTF-8': 'zh_CN.UTF-8',
|
|
|
|
},
|
|
|
|
'FreeBSD': {
|
|
|
|
'en_US.UTF-8': 'en_US.UTF-8',
|
|
|
|
'cs_CZ.ISO8859-2': 'cs_CZ.ISO8859-2',
|
|
|
|
'fr_FR.UTF-8': 'fr_FR.UTF-8',
|
|
|
|
'fr_CA.ISO8859-1': 'fr_CA.ISO8859-1',
|
|
|
|
'ru_RU.UTF-8': 'ru_RU.UTF-8',
|
|
|
|
'zh_CN.UTF-8': 'zh_CN.UTF-8',
|
|
|
|
},
|
|
|
|
'Linux': {
|
|
|
|
'en_US.UTF-8': 'en_US.UTF-8',
|
|
|
|
'cs_CZ.ISO8859-2': 'cs_CZ.ISO-8859-2',
|
|
|
|
'fr_FR.UTF-8': 'fr_FR.UTF-8',
|
|
|
|
'fr_CA.ISO8859-1': 'fr_CA.ISO-8859-1',
|
|
|
|
'ru_RU.UTF-8': 'ru_RU.UTF-8',
|
|
|
|
'zh_CN.UTF-8': 'zh_CN.UTF-8',
|
|
|
|
},
|
|
|
|
'Windows': {
|
|
|
|
'en_US.UTF-8': 'English_United States.1252',
|
|
|
|
'cs_CZ.ISO8859-2': 'Czech_Czech Republic.1250',
|
|
|
|
'fr_FR.UTF-8': 'French_France.1252',
|
|
|
|
'fr_CA.ISO8859-1': 'French_Canada.1252',
|
|
|
|
'ru_RU.UTF-8': 'Russian_Russia.1251',
|
|
|
|
'zh_CN.UTF-8': 'Chinese_China.936',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
default_locale = locale.setlocale(locale.LC_ALL)
|
|
|
|
for feature, loc in locales[platform.system()].items():
|
|
|
|
try:
|
|
|
|
locale.setlocale(locale.LC_ALL, loc)
|
2014-08-23 04:02:21 +00:00
|
|
|
self.config.available_features.add('locale.{0}'.format(feature))
|
2014-08-21 17:30:44 +00:00
|
|
|
except:
|
2014-08-23 04:02:21 +00:00
|
|
|
self.lit_config.warning('The locale {0} is not supported by '
|
2014-08-21 17:30:44 +00:00
|
|
|
'your platform. Some tests will be '
|
|
|
|
'unsupported.'.format(loc))
|
|
|
|
locale.setlocale(locale.LC_ALL, default_locale)
|
|
|
|
|
|
|
|
# Write an "available feature" that combines the triple when
|
|
|
|
# use_system_lib is enabled. This is so that we can easily write XFAIL
|
|
|
|
# markers for tests that are known to fail with versions of libc++ as
|
|
|
|
# were shipped with a particular triple.
|
|
|
|
if self.use_system_lib:
|
|
|
|
self.config.available_features.add(
|
2014-10-27 22:14:25 +00:00
|
|
|
'with_system_lib=%s' % self.config.target_triple)
|
2014-08-21 17:30:44 +00:00
|
|
|
|
2014-09-05 17:21:57 +00:00
|
|
|
if 'libcpp-has-no-threads' in self.config.available_features:
|
|
|
|
self.compile_flags += ['-D_LIBCPP_HAS_NO_THREADS']
|
|
|
|
|
|
|
|
if 'libcpp-has-no-monotonic-clock' in self.config.available_features:
|
|
|
|
self.compile_flags += ['-D_LIBCPP_HAS_NO_MONOTONIC_CLOCK']
|
|
|
|
|
2014-08-21 17:30:44 +00:00
|
|
|
def configure_compile_flags(self):
|
|
|
|
# Configure extra compiler flags.
|
|
|
|
self.compile_flags += ['-I' + self.src_root + '/include',
|
|
|
|
'-I' + self.src_root + '/test/support']
|
2014-10-23 22:57:56 +00:00
|
|
|
if sys.platform.startswith('linux'):
|
2014-10-18 01:15:17 +00:00
|
|
|
self.compile_flags += ['-D__STDC_FORMAT_MACROS',
|
|
|
|
'-D__STDC_LIMIT_MACROS',
|
|
|
|
'-D__STDC_CONSTANT_MACROS']
|
2014-08-21 17:30:44 +00:00
|
|
|
|
|
|
|
def configure_link_flags(self):
|
2014-10-18 01:15:17 +00:00
|
|
|
# Configure library search paths
|
2014-10-19 00:42:41 +00:00
|
|
|
abi_library_path = self.get_lit_conf('abi_library_path', '')
|
2014-10-18 01:15:17 +00:00
|
|
|
self.link_flags += ['-L' + self.obj_root + '/lib']
|
2014-10-19 00:42:41 +00:00
|
|
|
if not self.use_system_lib:
|
|
|
|
self.link_flags += ['-Wl,-rpath', '-Wl,' + self.obj_root + '/lib']
|
|
|
|
if abi_library_path:
|
|
|
|
self.link_flags += ['-L' + abi_library_path,
|
|
|
|
'-Wl,-rpath', '-Wl,' + abi_library_path]
|
2014-10-18 01:15:17 +00:00
|
|
|
# Configure libraries
|
|
|
|
self.link_flags += ['-lc++']
|
2014-08-21 17:30:44 +00:00
|
|
|
link_flags_str = self.get_lit_conf('link_flags')
|
|
|
|
if link_flags_str is None:
|
|
|
|
cxx_abi = self.get_lit_conf('cxx_abi', 'libcxxabi')
|
|
|
|
if cxx_abi == 'libstdc++':
|
|
|
|
self.link_flags += ['-lstdc++']
|
|
|
|
elif cxx_abi == 'libsupc++':
|
|
|
|
self.link_flags += ['-lsupc++']
|
|
|
|
elif cxx_abi == 'libcxxabi':
|
|
|
|
self.link_flags += ['-lc++abi']
|
|
|
|
elif cxx_abi == 'libcxxrt':
|
|
|
|
self.link_flags += ['-lcxxrt']
|
|
|
|
elif cxx_abi == 'none':
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
self.lit_config.fatal(
|
|
|
|
'C++ ABI setting %s unsupported for tests' % cxx_abi)
|
|
|
|
|
|
|
|
if sys.platform == 'darwin':
|
|
|
|
self.link_flags += ['-lSystem']
|
2014-10-23 22:57:56 +00:00
|
|
|
elif sys.platform.startswith('linux'):
|
2014-08-21 17:30:44 +00:00
|
|
|
self.link_flags += ['-lgcc_eh', '-lc', '-lm', '-lpthread',
|
|
|
|
'-lrt', '-lgcc_s']
|
|
|
|
elif sys.platform.startswith('freebsd'):
|
|
|
|
self.link_flags += ['-lc', '-lm', '-pthread', '-lgcc_s']
|
|
|
|
else:
|
2014-10-18 01:15:17 +00:00
|
|
|
self.lit_config.fatal("unrecognized system: %r" % sys.platform)
|
2014-08-21 17:30:44 +00:00
|
|
|
|
|
|
|
self.lit_config.note(
|
|
|
|
"inferred link_flags as: %r" % self.link_flags)
|
|
|
|
if link_flags_str:
|
|
|
|
self.link_flags += shlex.split(link_flags_str)
|
|
|
|
|
|
|
|
|
|
|
|
def configure_std_flag(self):
|
|
|
|
# Try and get the std version from the command line. Fall back to
|
|
|
|
# default given in lit.site.cfg is not present. If default is not
|
|
|
|
# present then force c++11.
|
|
|
|
std = self.get_lit_conf('std')
|
|
|
|
if std is None:
|
|
|
|
std = 'c++11'
|
|
|
|
self.lit_config.note('using default std: \'-std=c++11\'')
|
2014-08-23 04:02:21 +00:00
|
|
|
self.compile_flags += ['-std={0}'.format(std)]
|
2014-08-21 17:30:44 +00:00
|
|
|
self.config.available_features.add(std)
|
|
|
|
|
|
|
|
def configure_sanitizer(self):
|
|
|
|
san = self.get_lit_conf('llvm_use_sanitizer', '').strip()
|
|
|
|
if san:
|
|
|
|
self.compile_flags += ['-fno-omit-frame-pointer']
|
2014-10-23 22:57:56 +00:00
|
|
|
if sys.platform.startswith('linux'):
|
2014-10-23 02:54:15 +00:00
|
|
|
self.link_flags += ['-ldl']
|
2014-08-21 17:30:44 +00:00
|
|
|
if san == 'Address':
|
|
|
|
self.compile_flags += ['-fsanitize=address']
|
|
|
|
self.config.available_features.add('asan')
|
|
|
|
elif san == 'Memory' or san == 'MemoryWithOrigins':
|
|
|
|
self.compile_flags += ['-fsanitize=memory']
|
|
|
|
if san == 'MemoryWithOrigins':
|
|
|
|
self.compile_flags += ['-fsanitize-memory-track-origins']
|
|
|
|
self.config.available_features.add('msan')
|
2014-10-16 23:21:59 +00:00
|
|
|
elif san == 'Undefined':
|
|
|
|
self.compile_flags += ['-fsanitize=undefined',
|
|
|
|
'-fno-sanitize=vptr,function',
|
|
|
|
'-fno-sanitize-recover']
|
|
|
|
self.config.available_features.add('ubsan')
|
2014-08-21 17:30:44 +00:00
|
|
|
else:
|
|
|
|
self.lit_config.fatal('unsupported value for '
|
2014-08-23 04:02:21 +00:00
|
|
|
'libcxx_use_san: {0}'.format(san))
|
2014-08-21 17:30:44 +00:00
|
|
|
|
|
|
|
def configure_triple(self):
|
|
|
|
# Get or infer the target triple.
|
|
|
|
self.config.target_triple = self.get_lit_conf('target_triple')
|
|
|
|
# If no target triple was given, try to infer it from the compiler
|
|
|
|
# under test.
|
|
|
|
if not self.config.target_triple:
|
2014-10-27 22:14:25 +00:00
|
|
|
target_triple = lit.util.capture(
|
2014-08-21 17:30:44 +00:00
|
|
|
[self.cxx, '-dumpmachine']).strip()
|
2014-10-27 22:14:25 +00:00
|
|
|
# Drop sub-major version components from the triple, because the
|
|
|
|
# current XFAIL handling expects exact matches for feature checks.
|
|
|
|
# Example: x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu.
|
|
|
|
# The 5th group handles triples greater than 3 parts
|
|
|
|
# (ex x86_64-pc-linux-gnu).
|
|
|
|
target_triple = re.sub(r'([^-]+)-([^-]+)-([^.]+)([^-]*)(.*)',
|
|
|
|
r'\1-\2-\3\5', target_triple)
|
|
|
|
# linux-gnu is needed in the triple to properly identify linuxes
|
|
|
|
# that use GLIBC. Handle redhat and opensuse triples as special
|
|
|
|
# cases and append the missing `-gnu` portion.
|
|
|
|
if target_triple.endswith('redhat-linux') or \
|
|
|
|
target_triple.endswith('suse-linux'):
|
|
|
|
target_triple += '-gnu'
|
|
|
|
self.config.target_triple = target_triple
|
2014-08-21 17:30:44 +00:00
|
|
|
self.lit_config.note(
|
|
|
|
"inferred target_triple as: %r" % self.config.target_triple)
|
|
|
|
|
|
|
|
def configure_env(self):
|
|
|
|
# Configure extra linker parameters.
|
|
|
|
if sys.platform == 'darwin':
|
|
|
|
if not self.use_system_lib:
|
|
|
|
self.env['DYLD_LIBRARY_PATH'] = os.path.join(self.obj_root,
|
|
|
|
'lib')
|
|
|
|
|
|
|
|
|
2010-09-15 03:57:04 +00:00
|
|
|
# name: The name of this test suite.
|
|
|
|
config.name = 'libc++'
|
|
|
|
|
|
|
|
# suffixes: A list of file extensions to treat as test files.
|
|
|
|
config.suffixes = ['.cpp']
|
|
|
|
|
|
|
|
# test_source_root: The root path where tests are located.
|
|
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
|
2014-08-21 17:30:44 +00:00
|
|
|
configuration = Configuration(lit_config, config)
|
|
|
|
configuration.configure()
|
|
|
|
config.test_format = configuration.get_test_format()
|