[compiler-rt] r258739 - [powerpc] make test case as xfail

Bill Seurer via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 25 15:03:04 PST 2016


Author: seurer
Date: Mon Jan 25 17:03:04 2016
New Revision: 258739

URL: http://llvm.org/viewvc/llvm-project?rev=258739&view=rev
Log:
[powerpc] make test case as xfail

This test case which worked for a while is now failing again.  I was unable to
trace the change in status to any particular revision.

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=258739&r1=258738&r2=258739&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/race_on_mutex.c (original)
+++ compiler-rt/trunk/test/tsan/race_on_mutex.c Mon Jan 25 17:03:04 2016
@@ -1,7 +1,7 @@
 // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
-// This test fails on powerpc64 (VMA=46).
+// This test fails when run on powerpc64 (VMA=46).
 // The size of the write reported by Tsan for T1 is 8 instead of 1.
-// XFAIL: powerpc64-unknown-linux-gnu
+// XFAIL: powerpc64
 #include "test.h"
 
 pthread_mutex_t Mtx;




More information about the llvm-commits mailing list