[PATCH] D19655: [ASan] [SystemZ] Mark segv_read_write.c as UNSUPPORTED.

Marcin Koƛcielnicki via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 28 06:06:28 PDT 2016


koriakin created this revision.
koriakin added reviewers: kcc, eugenis.
koriakin added a subscriber: llvm-commits.
koriakin set the repository for this revision to rL LLVM.
koriakin added a project: Sanitizers.
Herald added a subscriber: kubabrecka.

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.

Repository:
  rL LLVM

http://reviews.llvm.org/D19655

Files:
  test/asan/TestCases/Linux/segv_read_write.c

Index: test/asan/TestCases/Linux/segv_read_write.c
===================================================================
--- test/asan/TestCases/Linux/segv_read_write.c
+++ test/asan/TestCases/Linux/segv_read_write.c
@@ -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>
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D19655.55405.patch
Type: text/x-patch
Size: 509 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160428/77241f97/attachment.bin>


More information about the llvm-commits mailing list