forked from OSchip/llvm-project
[power] Fix test case target checks
Several test cases that used to fail on both power LE and BE now run correctly on LE. llvm-svn: 255262
This commit is contained in:
parent
c83fd9554a
commit
6845fb3671
|
@ -7,8 +7,8 @@
|
|||
// of the thread to "ThreadStatusFinished" failing a check in "SetJoined"
|
||||
// (defined in sanitizer_thread_registry.cc). It might seem a bug on glibc,
|
||||
// however the same version GLIBC-2.17 will not make fail the test on
|
||||
// powerpc64 (VMA=46)
|
||||
// XFAIL: powerpc64
|
||||
// powerpc64 BE (VMA=46)
|
||||
// XFAIL: powerpc64-unknown-linux-gnu
|
||||
|
||||
#include "test.h"
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
||||
// This test fails on powerpc64 (VMA=44), it does not appear to be
|
||||
// This test fails on powerpc64 BE (VMA=44), it does not appear to be
|
||||
// a functional problem, but the Tsan report is missing some info.
|
||||
// XFAIL: powerpc64
|
||||
// XFAIL: powerpc64-unknown-linux-gnu
|
||||
|
||||
#include "test.h"
|
||||
#include <signal.h>
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
|
||||
// Longjmp assembly has not been implemented for mips64 yet
|
||||
// XFAIL: mips64
|
||||
// This test fails on powerpc64 (VMA=44), a segmentation fault
|
||||
// This test fails on powerpc64 BE (VMA=44), a segmentation fault
|
||||
// error happens at the second assignment
|
||||
// "((volatile int *volatile)mem)[1] = 1".
|
||||
// XFAIL: powerpc64
|
||||
// XFAIL: powerpc64-unknown-linux-gnu
|
||||
|
||||
#include <setjmp.h>
|
||||
#include <signal.h>
|
||||
|
|
Loading…
Reference in New Issue