From 3517ece21f9dbde594e5ada95cd4cf26709d8f3e Mon Sep 17 00:00:00 2001 From: Petar Jovanovic Date: Wed, 25 Apr 2018 17:34:30 +0000 Subject: [PATCH] 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. llvm-svn: 330849 --- compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc | 1 + compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc b/compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc index 1cfd0d6..6079af6 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc +++ b/compiler-rt/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/compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc b/compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc index b76e905..547aa41 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc +++ b/compiler-rt/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; -- 2.7.4