From a26d10802bf99f4c9cc50e00b3aa084ecef72db3 Mon Sep 17 00:00:00 2001 From: Alex Shlyapnikov Date: Tue, 20 Jun 2017 19:16:41 +0000 Subject: [PATCH] [ASan] Disable allocator_oom_test.cc on s390 Summary: ASan shadow memory on s390 is larger than other configurations, let's disable this test for now (will revisit it later). Reviewers: eugenis Subscribers: kubamracek, llvm-commits Differential Revision: https://reviews.llvm.org/D34414 llvm-svn: 305822 --- compiler-rt/test/asan/TestCases/Linux/allocator_oom_test.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler-rt/test/asan/TestCases/Linux/allocator_oom_test.cc b/compiler-rt/test/asan/TestCases/Linux/allocator_oom_test.cc index c93e9fe21726..4c696f325803 100644 --- a/compiler-rt/test/asan/TestCases/Linux/allocator_oom_test.cc +++ b/compiler-rt/test/asan/TestCases/Linux/allocator_oom_test.cc @@ -28,6 +28,9 @@ // RUN: %env_asan_opts=allocator_may_return_null=1 %run %t realloc-after-malloc 2>&1 \ // RUN: | FileCheck %s --check-prefixes=CHECK-MALLOC-REALLOC,CHECK-NULL +// ASan shadow memory on s390 is too large for this test. +// UNSUPPORTED: s390 + #include #include #include