summaryrefslogtreecommitdiff
path: root/test/sanitizer_common
diff options
context:
space:
mode:
authorPetar Jovanovic <petar.jovanovic@mips.com>2018-04-25 17:34:30 +0000
committerPetar Jovanovic <petar.jovanovic@mips.com>2018-04-25 17:34:30 +0000
commit77cb99480a98ca2b2c30de28dc736d5b13ae67d6 (patch)
tree4a1f2731f28382cdce9c51955e693e5ec788010b /test/sanitizer_common
parentbcf769a81d9065cb734eef6b8cf7627ef2f628b4 (diff)
Finetune supported arches for the tests added in r330840
r330840 introduced two tests that may not be supported on all architectures. powerpc64 seems to be one of those. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@330849 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/sanitizer_common')
-rw-r--r--test/sanitizer_common/TestCases/Posix/illegal_read_test.cc1
-rw-r--r--test/sanitizer_common/TestCases/Posix/illegal_write_test.cc1
2 files changed, 2 insertions, 0 deletions
diff --git a/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc b/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
index 1cfd0d694..6079af66a 100644
--- a/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
+++ b/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
@@ -2,6 +2,7 @@
// RUN: %clangxx -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
// REQUIRES: stable-runtime
+// XFAIL: powerpc64
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 b76e9050a..547aa41b6 100644
--- a/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc
+++ b/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc
@@ -2,6 +2,7 @@
// RUN: %clangxx -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
// REQUIRES: stable-runtime
+// XFAIL: powerpc64
volatile int *null = 0;