summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcin Koscielnicki <koriakin@0x04.net>2016-04-29 00:43:20 +0000
committerMarcin Koscielnicki <koriakin@0x04.net>2016-04-29 00:43:20 +0000
commita2feb7698f17ae425de38a593907dd916f6996d2 (patch)
tree2a152af17d4067ac7372eda40b9b387b645798e5 /test
parent3fd49abdbe249352471e7166aac837877c55c17d (diff)
[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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@267960 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/asan/TestCases/Linux/segv_read_write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asan/TestCases/Linux/segv_read_write.c b/test/asan/TestCases/Linux/segv_read_write.c
index d5a62c66d..b1379703e 100644
--- a/test/asan/TestCases/Linux/segv_read_write.c
+++ b/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>