[compiler-rt] r263779 - [TSAN] Fix build bot failure for powerpc64le
Sagar Thakur via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 18 00:55:45 PDT 2016
Author: slthakur
Date: Fri Mar 18 02:55:44 2016
New Revision: 263779
URL: http://llvm.org/viewvc/llvm-project?rev=263779&view=rev
Log:
[TSAN] Fix build bot failure for powerpc64le
race_on_mutex.c passes for powerpc64le too after revision 263778. So removing the XFAIL marker.
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=263779&r1=263778&r2=263779&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/race_on_mutex.c (original)
+++ compiler-rt/trunk/test/tsan/race_on_mutex.c Fri Mar 18 02:55:44 2016
@@ -1,7 +1,4 @@
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
-// 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
#include "test.h"
pthread_mutex_t Mtx;
More information about the llvm-commits
mailing list