summaryrefslogtreecommitdiff
path: root/test/lsan
diff options
context:
space:
mode:
authorMichal Gorny <mgorny@gentoo.org>2017-02-08 08:43:44 +0000
committerMichal Gorny <mgorny@gentoo.org>2017-02-08 08:43:44 +0000
commit431213c0bacde9cf920339aaa8196f7c838a1b50 (patch)
tree310109ef4a47216faff8482c2d07b0c2ca03b150 /test/lsan
parent49779f49caf4c9ba2f1828650cfbb15b294374d3 (diff)
[test] Enable the strace_test only if strace is installed
Differential Revision: https://reviews.llvm.org/D29628 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@294425 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lsan')
-rw-r--r--test/lsan/TestCases/strace_test.cc1
-rw-r--r--test/lsan/lit.common.cfg5
2 files changed, 6 insertions, 0 deletions
diff --git a/test/lsan/TestCases/strace_test.cc b/test/lsan/TestCases/strace_test.cc
index b3568d0b4..b25e05753 100644
--- a/test/lsan/TestCases/strace_test.cc
+++ b/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
diff --git a/test/lsan/lit.common.cfg b/test/lsan/lit.common.cfg
index 6002e2d69..8580eec33 100644
--- a/test/lsan/lit.common.cfg
+++ b/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 @@ else:
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 + "/../"