[compiler-rt] r267960 - [ASan] [SystemZ] Mark segv_read_write.c as UNSUPPORTED.
Marcin Koscielnicki via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 28 17:43:20 PDT 2016
Author: koriakin
Date: Thu Apr 28 19:43:20 2016
New Revision: 267960
URL: http://llvm.org/viewvc/llvm-project?rev=267960&view=rev
Log:
[ASan] [SystemZ] Mark segv_read_write.c as UNSUPPORTED.
On s390*-linux, sigcontext just doesn't contain any information that could
be used to recover the type of access, so there's no way to fix this, short
of emulating the faulting instruction.
Differential Revision: http://reviews.llvm.org/D19655
Modified:
compiler-rt/trunk/test/asan/TestCases/Linux/segv_read_write.c
Modified: compiler-rt/trunk/test/asan/TestCases/Linux/segv_read_write.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Linux/segv_read_write.c?rev=267960&r1=267959&r2=267960&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Linux/segv_read_write.c (original)
+++ compiler-rt/trunk/test/asan/TestCases/Linux/segv_read_write.c Thu Apr 28 19:43:20 2016
@@ -1,7 +1,7 @@
// RUN: %clangxx_asan -std=c++11 -O0 %s -o %t
// RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
// RUN: not %run %t write 2>&1 | FileCheck %s --check-prefix=WRITE
-// UNSUPPORTED: powerpc64,mips
+// UNSUPPORTED: powerpc64,mips,s390
#include <sys/mman.h>
More information about the llvm-commits
mailing list