forked from OSchip/llvm-project
[TSan][Darwin] Enable Trace/TraceAlloc unit tests
These tests are now green: ``` Trace.MultiPart Trace.RestoreAccess Trace.RestoreMutexLock TraceAlloc.FinishedThreadReuse TraceAlloc.FinishedThreadReuse2 TraceAlloc.SingleThread ``` rdar://82107856
This commit is contained in:
parent
9e634b35ff
commit
ff11cd9550
|
@ -16,10 +16,9 @@
|
|||
#include "gtest/gtest.h"
|
||||
#include "tsan_rtl.h"
|
||||
|
||||
#if SANITIZER_MAC || !defined(__x86_64__)
|
||||
// These tests are currently crashing on Mac:
|
||||
// https://reviews.llvm.org/D107911
|
||||
// and on ppc64: https://reviews.llvm.org/D110546#3025422
|
||||
#if !defined(__x86_64__)
|
||||
// These tests are currently crashing on ppc64:
|
||||
// https://reviews.llvm.org/D110546#3025422
|
||||
// due to the way we create thread contexts
|
||||
// (but they crashed on Mac with normal pthread_create as well).
|
||||
// There must be some difference in thread initialization
|
||||
|
|
Loading…
Reference in New Issue