• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# -*- Python -*-
2
3# Common configuration for running leak detection tests under LSan/ASan.
4
5import os
6
7def get_required_attr(config, attr_name):
8  attr_value = getattr(config, attr_name, None)
9  if attr_value == None:
10    lit_config.fatal(
11      "No attribute %r in test configuration! You may need to run "
12      "tests from your build directory or add this attribute "
13      "to lit.site.cfg " % attr_name)
14  return attr_value
15
16# Setup source root.
17config.test_source_root = os.path.dirname(__file__)
18
19# Choose between standalone and LSan+ASan modes.
20lsan_lit_test_mode = get_required_attr(config, 'lsan_lit_test_mode')
21if lsan_lit_test_mode == "Standalone":
22  config.name = "LeakSanitizer-Standalone"
23  lsan_cflags = ["-fsanitize=leak"]
24elif lsan_lit_test_mode == "AddressSanitizer":
25  config.name = "LeakSanitizer-AddressSanitizer"
26  lsan_cflags = ["-fsanitize=address"]
27  config.available_features.add('asan')
28else:
29  lit_config.fatal("Unknown LSan test mode: %r" % lsan_lit_test_mode)
30
31clang_cflags = ["-O0", "-m64"] + config.debug_info_flags
32clang_cxxflags = config.cxx_mode_flags + clang_cflags
33clang_lsan_cflags = clang_cflags + lsan_cflags
34clang_lsan_cxxflags = clang_cxxflags + lsan_cflags
35
36config.clang_cflags = clang_cflags
37config.clang_cxxflags = clang_cxxflags
38
39def build_invocation(compile_flags):
40  return " " + " ".join([config.clang] + compile_flags) + " "
41
42config.substitutions.append( ("%clang ", build_invocation(clang_cflags)) )
43config.substitutions.append( ("%clangxx ", build_invocation(clang_cxxflags)) )
44config.substitutions.append( ("%clang_lsan ", build_invocation(clang_lsan_cflags)) )
45config.substitutions.append( ("%clangxx_lsan ", build_invocation(clang_lsan_cxxflags)) )
46
47# LeakSanitizer tests are currently supported on x86-64 Linux and mips64 Linux only.
48if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64']:
49  config.unsupported = True
50
51config.suffixes = ['.c', '.cc', '.cpp']
52