blob: 2be10dae1c85134461f3ebffb62af8267359cc4b [file] [log] [blame]
Stephen Hines2d1fdb22014-05-28 23:58:16 -07001# -*- Python -*-
2
3import os
4
5def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
7 if not attr_value:
8 lit_config.fatal(
9 "No attribute %r in test configuration! You may need to run "
10 "tests from your build directory or add this attribute "
11 "to lit.site.cfg " % attr_name)
12 return attr_value
13
14# Setup config name.
15config.name = 'ThreadSanitizer'
16
17# Setup source root.
18config.test_source_root = os.path.dirname(__file__)
19
20# Setup environment variables for running ThreadSanitizer.
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080021default_tsan_opts = "atexit_sleep_ms=0"
Stephen Hines2d1fdb22014-05-28 23:58:16 -070022
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080023if config.host_os == 'Darwin':
24 # On Darwin, we default to `abort_on_error=1`, which would make tests run
25 # much slower. Let's override this and run lit tests with 'abort_on_error=0'.
26 default_tsan_opts += ':abort_on_error=0'
27
28# Platform-specific default TSAN_OPTIONS for lit tests.
29if default_tsan_opts:
30 config.environment['TSAN_OPTIONS'] = default_tsan_opts
31 default_tsan_opts += ':'
32config.substitutions.append(('%env_tsan_opts=',
33 'env TSAN_OPTIONS=' + default_tsan_opts))
Stephen Hines2d1fdb22014-05-28 23:58:16 -070034
35# GCC driver doesn't add necessary compile/link flags with -fsanitize=thread.
36if config.compiler_id == 'GNU':
Stephen Hines6a211c52014-07-21 00:49:56 -070037 extra_cflags = ["-fPIE", "-pthread", "-ldl", "-lstdc++", "-lrt", "-pie"]
Stephen Hines2d1fdb22014-05-28 23:58:16 -070038else:
39 extra_cflags = []
40
41# Setup default compiler flags used with -fsanitize=thread option.
Stephen Hines2d1fdb22014-05-28 23:58:16 -070042clang_tsan_cflags = ["-fsanitize=thread",
Stephen Hines2d1fdb22014-05-28 23:58:16 -070043 "-Wall",
Stephen Hines6d186232014-11-26 17:56:19 -080044 "-m64"] + config.debug_info_flags + extra_cflags
Stephen Hines2d1fdb22014-05-28 23:58:16 -070045clang_tsan_cxxflags = config.cxx_mode_flags + clang_tsan_cflags
46# Add additional flags if we're using instrumented libc++.
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080047# Instrumented libcxx currently not supported on Darwin.
48if config.has_libcxx and config.host_os != 'Darwin':
Stephen Hines2d1fdb22014-05-28 23:58:16 -070049 # FIXME: Dehardcode this path somehow.
50 libcxx_path = os.path.join(config.compiler_rt_obj_root, "lib",
51 "tsan", "libcxx_tsan")
52 libcxx_incdir = os.path.join(libcxx_path, "include", "c++", "v1")
53 libcxx_libdir = os.path.join(libcxx_path, "lib")
54 libcxx_so = os.path.join(libcxx_libdir, "libc++.so")
55 clang_tsan_cxxflags += ["-std=c++11",
56 "-I%s" % libcxx_incdir,
57 libcxx_so,
58 "-Wl,-rpath=%s" % libcxx_libdir]
59
60def build_invocation(compile_flags):
61 return " " + " ".join([config.clang] + compile_flags) + " "
62
63config.substitutions.append( ("%clang_tsan ", build_invocation(clang_tsan_cflags)) )
64config.substitutions.append( ("%clangxx_tsan ", build_invocation(clang_tsan_cxxflags)) )
65
66# Define CHECK-%os to check for OS-dependent output.
67config.substitutions.append( ('CHECK-%os', ("CHECK-" + config.host_os)))
68
Stephen Hines6a211c52014-07-21 00:49:56 -070069config.substitutions.append( ("%deflake ", os.path.join(os.path.dirname(__file__), "deflake.bash")) )
70
Stephen Hines2d1fdb22014-05-28 23:58:16 -070071# Default test suffixes.
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080072config.suffixes = ['.c', '.cc', '.cpp', '.m', '.mm']
Stephen Hines2d1fdb22014-05-28 23:58:16 -070073
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080074# ThreadSanitizer tests are currently supported on FreeBSD, Linux and Darwin.
75if config.host_os not in ['FreeBSD', 'Linux', 'Darwin']:
Stephen Hines2d1fdb22014-05-28 23:58:16 -070076 config.unsupported = True
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080077
78# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL
79# because the test hangs.
80if config.target_arch != 'aarch64':
81 config.available_features.add('stable-runtime')