summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Carlier <devnexen@gmail.com>2019-01-09 17:14:57 +0000
committerDavid Carlier <devnexen@gmail.com>2019-01-09 17:14:57 +0000
commitf08ee46d78ba3b0781db215e79f18b306a834e21 (patch)
treebe7b5f0bc0d780ee211f1c5eda3f9e7c2faddd70
parent4037a5a32ec582b279ae7641a058598bda86ee40 (diff)
downloadcompiler-rt-f08ee46d78ba3b0781db215e79f18b306a834e21.tar.gz
[asan] Disable TSD dtor leak unit tests on FreeBSD x86 64
- Assertion fails in the third iteration. Reviewers: krytarowski Reviewed By: krytarowski Differential Revision: https://reviews.llvm.org/D56497 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@350744 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/asan/TestCases/Posix/tsd_dtor_leak.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/asan/TestCases/Posix/tsd_dtor_leak.cc b/test/asan/TestCases/Posix/tsd_dtor_leak.cc
index 860f3459e..26109fe1a 100644
--- a/test/asan/TestCases/Posix/tsd_dtor_leak.cc
+++ b/test/asan/TestCases/Posix/tsd_dtor_leak.cc
@@ -3,6 +3,8 @@
// RUN: %clangxx_asan -O1 %s -pthread -o %t
// RUN: %env_asan_opts=quarantine_size_mb=0 %run %t
// XFAIL: x86_64-netbsd
+// Assertion fails
+// XFAIL: x86_64-freebsd
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>