Index: compiler-rt/trunk/test/lsan/TestCases/strace_test.cc =================================================================== --- compiler-rt/trunk/test/lsan/TestCases/strace_test.cc +++ compiler-rt/trunk/test/lsan/TestCases/strace_test.cc @@ -1,4 +1,5 @@ // Test that lsan reports a proper error when running under strace. +// REQUIRES: strace // RUN: %clangxx_lsan %s -o %t // RUN: not strace -o /dev/null %run %t 2>&1 | FileCheck %s Index: compiler-rt/trunk/test/lsan/lit.common.cfg =================================================================== --- compiler-rt/trunk/test/lsan/lit.common.cfg +++ compiler-rt/trunk/test/lsan/lit.common.cfg @@ -4,6 +4,8 @@ import os +import lit.util + def get_required_attr(config, attr_name): attr_value = getattr(config, attr_name, None) if attr_value == None: @@ -29,6 +31,9 @@ lit_config.fatal("Unknown LSan test mode: %r" % lsan_lit_test_mode) config.name += config.name_suffix +if lit.util.which('strace'): + config.available_features.add('strace') + clang_cflags = ["-O0", config.target_cflags] + config.debug_info_flags clang_cxxflags = config.cxx_mode_flags + clang_cflags lsan_incdir = config.test_source_root + "/../"