[compiler-rt] r301459 - XFAIL the TSan XPC tests on iOS. XPC isn't available on iOS.

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 26 13:29:30 PDT 2017


Author: kuba.brecka
Date: Wed Apr 26 15:29:30 2017
New Revision: 301459

URL: http://llvm.org/viewvc/llvm-project?rev=301459&view=rev
Log:
XFAIL the TSan XPC tests on iOS.  XPC isn't available on iOS.


Modified:
    compiler-rt/trunk/test/tsan/Darwin/xpc-cancel.mm
    compiler-rt/trunk/test/tsan/Darwin/xpc-race.mm
    compiler-rt/trunk/test/tsan/Darwin/xpc.mm

Modified: compiler-rt/trunk/test/tsan/Darwin/xpc-cancel.mm
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/Darwin/xpc-cancel.mm?rev=301459&r1=301458&r2=301459&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/Darwin/xpc-cancel.mm (original)
+++ compiler-rt/trunk/test/tsan/Darwin/xpc-cancel.mm Wed Apr 26 15:29:30 2017
@@ -1,6 +1,8 @@
 // RUN: %clang_tsan %s -o %t -framework Foundation
 // RUN: %run %t 2>&1 | FileCheck %s
 
+// XFAIL: ios
+
 #import <Foundation/Foundation.h>
 #import <xpc/xpc.h>
 

Modified: compiler-rt/trunk/test/tsan/Darwin/xpc-race.mm
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/Darwin/xpc-race.mm?rev=301459&r1=301458&r2=301459&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/Darwin/xpc-race.mm (original)
+++ compiler-rt/trunk/test/tsan/Darwin/xpc-race.mm Wed Apr 26 15:29:30 2017
@@ -1,6 +1,8 @@
 // RUN: %clang_tsan %s -o %t -framework Foundation
 // RUN: %deflake %run %t 2>&1 | FileCheck %s
 
+// XFAIL: ios
+
 #import <Foundation/Foundation.h>
 #import <xpc/xpc.h>
 

Modified: compiler-rt/trunk/test/tsan/Darwin/xpc.mm
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/Darwin/xpc.mm?rev=301459&r1=301458&r2=301459&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/Darwin/xpc.mm (original)
+++ compiler-rt/trunk/test/tsan/Darwin/xpc.mm Wed Apr 26 15:29:30 2017
@@ -1,6 +1,8 @@
 // RUN: %clang_tsan %s -o %t -framework Foundation
 // RUN: %run %t 2>&1 | FileCheck %s
 
+// XFAIL: ios
+
 #import <Foundation/Foundation.h>
 #import <xpc/xpc.h>
 




More information about the llvm-commits mailing list