From a0193ecfe1c8c5b4440404e0031f8532052aec4e Mon Sep 17 00:00:00 2001 From: Marcin Koscielnicki Date: Fri, 29 Apr 2016 00:43:20 +0000 Subject: [PATCH] [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 --- compiler-rt/test/asan/TestCases/Linux/segv_read_write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/asan/TestCases/Linux/segv_read_write.c b/compiler-rt/test/asan/TestCases/Linux/segv_read_write.c index d5a62c66db30..b1379703ed86 100644 --- a/compiler-rt/test/asan/TestCases/Linux/segv_read_write.c +++ b/compiler-rt/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