[compiler-rt] r350744 - [asan] Disable TSD dtor leak unit tests on FreeBSD x86 64

David Carlier via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 9 09:14:57 PST 2019


Author: devnexen
Date: Wed Jan  9 09:14:57 2019
New Revision: 350744

URL: http://llvm.org/viewvc/llvm-project?rev=350744&view=rev
Log:
[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

Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/tsd_dtor_leak.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/tsd_dtor_leak.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/tsd_dtor_leak.cc?rev=350744&r1=350743&r2=350744&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/tsd_dtor_leak.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/tsd_dtor_leak.cc Wed Jan  9 09:14:57 2019
@@ -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>




More information about the llvm-commits mailing list