[compiler-rt] r256391 - [power] Fix test case target checks

Bill Seurer via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 24 12:21:36 PST 2015


Author: seurer
Date: Thu Dec 24 14:21:36 2015
New Revision: 256391

URL: http://llvm.org/viewvc/llvm-project?rev=256391&view=rev
Log:
[power] Fix test case target checks

Several test cases that used to fail on both power LE and BE
now run correctly on LE.


Modified:
    compiler-rt/trunk/test/tsan/race_on_mutex.c

Modified: compiler-rt/trunk/test/tsan/race_on_mutex.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/race_on_mutex.c?rev=256391&r1=256390&r2=256391&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/race_on_mutex.c (original)
+++ compiler-rt/trunk/test/tsan/race_on_mutex.c Thu Dec 24 14:21:36 2015
@@ -1,7 +1,7 @@
 // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
 // This test fails on powerpc64 (VMA=46).
 // The size of the write reported by Tsan for T1 is 8 instead of 1.
-// XFAIL: powerpc64
+// XFAIL: powerpc64-unknown-linux-gnu
 #include "test.h"
 
 pthread_mutex_t Mtx;




More information about the llvm-commits mailing list