From e2b4cd2bf141efb19c1852d76287b3c1f2cd9f2f Mon Sep 17 00:00:00 2001 From: Viktor Kutuzov Date: Mon, 27 Oct 2014 11:28:53 +0000 Subject: [Tsan] Enable thread sanitizer tests on FreeBSD Differential Revision: http://reviews.llvm.org/D5995 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@220676 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/tsan/lit.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/tsan') diff --git a/test/tsan/lit.cfg b/test/tsan/lit.cfg index d8b4fe9ff..d27500f8e 100644 --- a/test/tsan/lit.cfg +++ b/test/tsan/lit.cfg @@ -60,6 +60,6 @@ config.substitutions.append( ("%deflake ", os.path.join(os.path.dirname(__file__ # Default test suffixes. config.suffixes = ['.c', '.cc', '.cpp'] -# ThreadSanitizer tests are currently supported on Linux only. -if config.host_os not in ['Linux']: +# ThreadSanitizer tests are currently supported on FreeBSD and Linux only. +if config.host_os not in ['FreeBSD', 'Linux']: config.unsupported = True -- cgit v1.2.3