summaryrefslogtreecommitdiff
path: root/test/tsan
diff options
context:
space:
mode:
authorViktor Kutuzov <vkutuzov@accesssoftek.com>2014-10-27 11:28:53 +0000
committerViktor Kutuzov <vkutuzov@accesssoftek.com>2014-10-27 11:28:53 +0000
commite2b4cd2bf141efb19c1852d76287b3c1f2cd9f2f (patch)
treece19236292b8d9908d22cdcf5eeb542c75aa86e2 /test/tsan
parent94d4285dc22c469b0daca183a60765d752b10fd8 (diff)
[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
Diffstat (limited to 'test/tsan')
-rw-r--r--test/tsan/lit.cfg4
1 files changed, 2 insertions, 2 deletions
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