[compiler-rt] r330849 - Finetune supported arches for the tests added in r330840

Petar Jovanovic via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 25 10:34:30 PDT 2018


Author: petarj
Date: Wed Apr 25 10:34:30 2018
New Revision: 330849

URL: http://llvm.org/viewvc/llvm-project?rev=330849&view=rev
Log:
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.

Modified:
    compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
    compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc?rev=330849&r1=330848&r2=330849&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_read_test.cc Wed Apr 25 10:34:30 2018
@@ -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;

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc?rev=330849&r1=330848&r2=330849&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/illegal_write_test.cc Wed Apr 25 10:34:30 2018
@@ -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;
 




More information about the llvm-commits mailing list