# -*- Python -*- import os def get_required_attr(config, attr_name): attr_value = getattr(config, attr_name, None) if not attr_value: lit.fatal("No attribute %r in test configuration! You may need to run " "tests from your build directory or add this attribute " "to lit.site.cfg " % attr_name) return attr_value lsan_lit_src_root = get_required_attr(config, "lsan_lit_src_root") lsan_lit_cfg = os.path.join(lsan_lit_src_root, "lit.common.cfg") if not os.path.exists(lsan_lit_cfg): lit.fatal("Can't find common LSan lit config at: %r" % lsan_lit_cfg) lit.load_config(config, lsan_lit_cfg) config.name = 'LeakSanitizer-AddressSanitizer' clang_lsan_cxxflags = config.clang_cxxflags + " -fsanitize=address " config.substitutions.append( ("%clangxx_lsan ", (" " + config.clang + " " + clang_lsan_cxxflags + " ")) ) config.environment['ASAN_OPTIONS'] = 'detect_leaks=1' config.environment['ASAN_SYMBOLIZER_PATH'] = config.llvm_symbolizer_path