[power] Fix test case target checks
authorBill Seurer <seurer@linux.vnet.ibm.com>
Thu, 10 Dec 2015 17:09:53 +0000 (17:09 +0000)
committerBill Seurer <seurer@linux.vnet.ibm.com>
Thu, 10 Dec 2015 17:09:53 +0000 (17:09 +0000)
Several test cases that used to fail on both power LE and BE
now run correctly on LE.

llvm-svn: 255262

compiler-rt/test/tsan/cond_cancel.c
compiler-rt/test/tsan/signal_errno.cc
compiler-rt/test/tsan/signal_longjmp.cc

index ca56e8e..fb6a661 100644 (file)
@@ -7,8 +7,8 @@
 // of the thread to "ThreadStatusFinished" failing a check in "SetJoined" 
 // (defined in sanitizer_thread_registry.cc). It might seem a bug on glibc,
 // however the same version GLIBC-2.17 will not make fail the test on 
-// powerpc64 (VMA=46)
-// XFAIL: powerpc64
+// powerpc64 BE (VMA=46)
+// XFAIL: powerpc64-unknown-linux-gnu
 
 #include "test.h"
 
index ce19950..e13e156 100644 (file)
@@ -1,7 +1,7 @@
 // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
-// This test fails on powerpc64 (VMA=44), it does not appear to be
+// This test fails on powerpc64 BE (VMA=44), it does not appear to be
 // a functional problem, but the Tsan report is missing some info.
-// XFAIL: powerpc64
+// XFAIL: powerpc64-unknown-linux-gnu
 
 #include "test.h"
 #include <signal.h>
index fb4d278..45e2462 100644 (file)
@@ -5,10 +5,10 @@
 
 // Longjmp assembly has not been implemented for mips64 yet
 // XFAIL: mips64
-// This test fails on powerpc64 (VMA=44), a segmentation fault
+// This test fails on powerpc64 BE (VMA=44), a segmentation fault
 // error happens at the second assignment
 // "((volatile int *volatile)mem)[1] = 1".
-// XFAIL: powerpc64
+// XFAIL: powerpc64-unknown-linux-gnu
 
 #include <setjmp.h>
 #include <signal.h>