[TSAN] XFAIL race_on_mutex.cc for MIPS

This test expects pthread_mutex_init in the frame #0 of thread T1 but we
get memset at frame #0 because memset that is called from pthread_init_mutex
is being intercepted by TSan

llvm-svn: 261986
This commit is contained in:
Sagar Thakur 2016-02-26 07:01:24 +00:00
parent c929349912
commit ce63c2053d
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,10 @@
// 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
// This test expects pthread_mutex_init in the frame #0 of thread T1 but we
// get memset at frame #0 because memset that is called from pthread_init_mutex
// is being intercepted by TSan
// XFAIL: mips64
#include "test.h"
pthread_mutex_t Mtx;