aboutsummaryrefslogtreecommitdiff
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
commita26d10802bf99f4c9cc50e00b3aa084ecef72db3 (patch)
tree58eb06581f4a9fb426a3c793e716df8a5ba7a4b9
parentff3f912e74473ddae39fa261eeeae2ac6777c392 (diff)
downloadllvm-a26d10802bf99f4c9cc50e00b3aa084ecef72db3.zip
llvm-a26d10802bf99f4c9cc50e00b3aa084ecef72db3.tar.gz
llvm-a26d10802bf99f4c9cc50e00b3aa084ecef72db3.tar.bz2
[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
-rw-r--r--compiler-rt/test/asan/TestCases/Linux/allocator_oom_test.cc3
1 files changed, 3 insertions, 0 deletions
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 c93e9fe..4c696f3 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 <stdlib.h>
#include <string.h>
#include <stdio.h>