diff options
author | Julian Lettner <jlettner@apple.com> | 2019-07-22 21:13:19 +0000 |
---|---|---|
committer | Julian Lettner <jlettner@apple.com> | 2019-07-22 21:13:19 +0000 |
commit | 2ef9ec40504b280cf99f65e8a0105c5b980a8e7d (patch) | |
tree | 0202b80a95b7ee83c977961306825795424a03a8 | |
parent | 77dc6d2479a36e805861e2bd3ef1e226d78f606f (diff) | |
download | bcm5719-llvm-2ef9ec40504b280cf99f65e8a0105c5b980a8e7d.tar.gz bcm5719-llvm-2ef9ec40504b280cf99f65e8a0105c5b980a8e7d.zip |
[TSan] Enable fiber tests on iOS simulator
These tests *do not* work on device, but they *do* work in the
simulator.
rdar://53403778
llvm-svn: 366738
-rw-r--r-- | compiler-rt/test/tsan/fiber_from_thread.cc | 2 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_longjmp.cc | 2 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_race.cc | 2 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_simple.cc | 2 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_two_threads.cc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/compiler-rt/test/tsan/fiber_from_thread.cc b/compiler-rt/test/tsan/fiber_from_thread.cc index c22d0839e02..d27379e7acf 100644 --- a/compiler-rt/test/tsan/fiber_from_thread.cc +++ b/compiler-rt/test/tsan/fiber_from_thread.cc @@ -1,6 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos -// XFAIL: ios +// XFAIL: ios && !iossim #include "sanitizer_common/sanitizer_ucontext.h" #include "test.h" diff --git a/compiler-rt/test/tsan/fiber_longjmp.cc b/compiler-rt/test/tsan/fiber_longjmp.cc index 3f68e92a327..e56fd21befb 100644 --- a/compiler-rt/test/tsan/fiber_longjmp.cc +++ b/compiler-rt/test/tsan/fiber_longjmp.cc @@ -1,6 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos -// XFAIL: ios +// XFAIL: ios && !iossim #include "sanitizer_common/sanitizer_ucontext.h" #include "test.h" #include <setjmp.h> diff --git a/compiler-rt/test/tsan/fiber_race.cc b/compiler-rt/test/tsan/fiber_race.cc index 0f08cdc2dc6..add66940ffd 100644 --- a/compiler-rt/test/tsan/fiber_race.cc +++ b/compiler-rt/test/tsan/fiber_race.cc @@ -1,6 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos -// XFAIL: ios +// XFAIL: ios && !iossim #include "sanitizer_common/sanitizer_ucontext.h" #include "test.h" diff --git a/compiler-rt/test/tsan/fiber_simple.cc b/compiler-rt/test/tsan/fiber_simple.cc index e1fd9bd0495..8123eb8eafc 100644 --- a/compiler-rt/test/tsan/fiber_simple.cc +++ b/compiler-rt/test/tsan/fiber_simple.cc @@ -1,6 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos -// XFAIL: ios +// XFAIL: ios && !iossim #include "sanitizer_common/sanitizer_ucontext.h" #include "test.h" diff --git a/compiler-rt/test/tsan/fiber_two_threads.cc b/compiler-rt/test/tsan/fiber_two_threads.cc index 02f1c175929..d2961b94dde 100644 --- a/compiler-rt/test/tsan/fiber_two_threads.cc +++ b/compiler-rt/test/tsan/fiber_two_threads.cc @@ -1,6 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos -// XFAIL: ios +// XFAIL: ios && !iossim #include "sanitizer_common/sanitizer_ucontext.h" #include "test.h" |