summaryrefslogtreecommitdiff
path: root/test/sanitizer_common
diff options
context:
space:
mode:
authorPetar Jovanovic <petar.jovanovic@mips.com>2018-04-25 19:34:48 +0000
committerPetar Jovanovic <petar.jovanovic@mips.com>2018-04-25 19:34:48 +0000
commit3fb4b3df7da0a4fcb5de681784248757e814ed26 (patch)
treeb878e89d12393e98683af71ee09f8f1ca8aaa38e /test/sanitizer_common
parentbc4072ffad7ecb03530b4bdf2da27fd49d29e607 (diff)
Add s390x to XFAIL for illegal_read/write_test.cc
Follow up to r330840 and r330849. It seems that s390 is also not distinguishing illegal WRITE and READ memory access. Add s390x to XFAIL for the tests. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@330863 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/sanitizer_common')
-rw-r--r--test/sanitizer_common/TestCases/Posix/illegal_read_test.cc2
-rw-r--r--test/sanitizer_common/TestCases/Posix/illegal_write_test.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc b/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
index 6079af66a..9615d7132 100644
--- a/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
+++ b/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
@@ -2,7 +2,7 @@
// RUN: %clangxx -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
// REQUIRES: stable-runtime
-// XFAIL: powerpc64
+// XFAIL: powerpc64, s390x
volatile int *null = 0;
volatile int a;
diff --git a/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc b/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc
index 547aa41b6..13d1c6a06 100644
--- a/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc
+++ b/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc
@@ -2,7 +2,7 @@
// RUN: %clangxx -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
// REQUIRES: stable-runtime
-// XFAIL: powerpc64
+// XFAIL: powerpc64, s390x
volatile int *null = 0;