[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

llvm-svn: 267960
This commit is contained in:
Marcin Koscielnicki 2016-04-29 00:43:20 +00:00
parent 6c5edd1263
commit a0193ecfe1
1 changed files with 1 additions and 1 deletions

View File

@ -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>