summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Shlyapnikov <alekseys@google.com>2017-06-20 19:16:41 +0000
committerAlex Shlyapnikov <alekseys@google.com>2017-06-20 19:16:41 +0000
commit4f2195f82b6124970cefd89e4ae0e179e7b99381 (patch)
tree48ac5cf92f834238eb4ac056fc0a7e4c12aab39f
parent9cbbe014c4d99e31fce00f40cfbecf3799872d2e (diff)
[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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@305822 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/asan/TestCases/Linux/allocator_oom_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/asan/TestCases/Linux/allocator_oom_test.cc b/test/asan/TestCases/Linux/allocator_oom_test.cc
index c93e9fe21..4c696f325 100644
--- a/test/asan/TestCases/Linux/allocator_oom_test.cc
+++ b/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 <stdlib.h>
#include <string.h>
#include <stdio.h>