diff options
-rw-r--r-- | compiler-rt/test/tsan/fiber_from_thread.cc | 1 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_longjmp.cc | 1 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_race.cc | 1 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_simple.cc | 1 | ||||
-rw-r--r-- | compiler-rt/test/tsan/fiber_two_threads.cc | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/compiler-rt/test/tsan/fiber_from_thread.cc b/compiler-rt/test/tsan/fiber_from_thread.cc index a432eb039df..c22d0839e02 100644 --- a/compiler-rt/test/tsan/fiber_from_thread.cc +++ b/compiler-rt/test/tsan/fiber_from_thread.cc @@ -1,5 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos +// XFAIL: ios #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 bcf7dbdbf6b..3f68e92a327 100644 --- a/compiler-rt/test/tsan/fiber_longjmp.cc +++ b/compiler-rt/test/tsan/fiber_longjmp.cc @@ -1,5 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos +// XFAIL: ios #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 4724c72fc14..0f08cdc2dc6 100644 --- a/compiler-rt/test/tsan/fiber_race.cc +++ b/compiler-rt/test/tsan/fiber_race.cc @@ -1,5 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos +// XFAIL: ios #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 550e5be8265..e1fd9bd0495 100644 --- a/compiler-rt/test/tsan/fiber_simple.cc +++ b/compiler-rt/test/tsan/fiber_simple.cc @@ -1,5 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos +// XFAIL: ios #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 58865860de3..02f1c175929 100644 --- a/compiler-rt/test/tsan/fiber_two_threads.cc +++ b/compiler-rt/test/tsan/fiber_two_threads.cc @@ -1,5 +1,6 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s // UNSUPPORTED: tvos, watchos +// XFAIL: ios #include "sanitizer_common/sanitizer_ucontext.h" #include "test.h" |