[compiler-rt] r330863 - Add s390x to XFAIL for illegal_read/write_test.cc

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


Author: petarj
Date: Wed Apr 25 12:34:48 2018
New Revision: 330863

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

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=330863&r1=330862&r2=330863&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 12:34:48 2018
@@ -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;

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=330863&r1=330862&r2=330863&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 12:34:48 2018
@@ -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;
 




More information about the llvm-commits mailing list