[compiler-rt] r365254 - XFAIL a few failing TSan-fiber tests for iOS

Julian Lettner via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 5 16:23:36 PDT 2019


Author: yln
Date: Fri Jul  5 16:23:36 2019
New Revision: 365254

URL: http://llvm.org/viewvc/llvm-project?rev=365254&view=rev
Log:
XFAIL a few failing TSan-fiber tests for iOS

Modified:
    compiler-rt/trunk/test/tsan/fiber_from_thread.cc
    compiler-rt/trunk/test/tsan/fiber_longjmp.cc
    compiler-rt/trunk/test/tsan/fiber_race.cc
    compiler-rt/trunk/test/tsan/fiber_simple.cc
    compiler-rt/trunk/test/tsan/fiber_two_threads.cc

Modified: compiler-rt/trunk/test/tsan/fiber_from_thread.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/fiber_from_thread.cc?rev=365254&r1=365253&r2=365254&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/fiber_from_thread.cc (original)
+++ compiler-rt/trunk/test/tsan/fiber_from_thread.cc Fri Jul  5 16:23:36 2019
@@ -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"
 

Modified: compiler-rt/trunk/test/tsan/fiber_longjmp.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/fiber_longjmp.cc?rev=365254&r1=365253&r2=365254&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/fiber_longjmp.cc (original)
+++ compiler-rt/trunk/test/tsan/fiber_longjmp.cc Fri Jul  5 16:23:36 2019
@@ -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>

Modified: compiler-rt/trunk/test/tsan/fiber_race.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/fiber_race.cc?rev=365254&r1=365253&r2=365254&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/fiber_race.cc (original)
+++ compiler-rt/trunk/test/tsan/fiber_race.cc Fri Jul  5 16:23:36 2019
@@ -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"
 

Modified: compiler-rt/trunk/test/tsan/fiber_simple.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/fiber_simple.cc?rev=365254&r1=365253&r2=365254&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/fiber_simple.cc (original)
+++ compiler-rt/trunk/test/tsan/fiber_simple.cc Fri Jul  5 16:23:36 2019
@@ -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"
 

Modified: compiler-rt/trunk/test/tsan/fiber_two_threads.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/fiber_two_threads.cc?rev=365254&r1=365253&r2=365254&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/fiber_two_threads.cc (original)
+++ compiler-rt/trunk/test/tsan/fiber_two_threads.cc Fri Jul  5 16:23:36 2019
@@ -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"
 




More information about the llvm-commits mailing list