[mips][compiler-rt] Disable sem_init_glibc.cc for MIPS64.
This test can't pass on MIPS64 due to the lack of versioned interceptors for asan and company. The interceptors bind to the earlier version of sem_init rather than the latest version. For MIPS64el this causes an accidental pass while MIPS64 big endian fails due reading back a different 32bit word to what sem_init wrote when the test is corrected to use 64bit atomics. llvm-svn: 314100
This commit is contained in:
parent
19d6ce9d8e
commit
46f5df1a20
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clangxx -O0 -g %s -lutil -o %t && %run %t
|
||||
// This test depends on the glibc layout of struct sem_t and checks that we
|
||||
// don't leave sem_t::private uninitialized.
|
||||
// UNSUPPORTED: android, lsan-x86, ubsan
|
||||
// UNSUPPORTED: android, lsan-x86, ubsan, target-is-mips64, target-is-mips64el
|
||||
#include <features.h>
|
||||
#include <assert.h>
|
||||
#include <semaphore.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue