diff options
author | Alex Shlyapnikov <alekseys@google.com> | 2017-06-20 19:16:41 +0000 |
---|---|---|
committer | Alex Shlyapnikov <alekseys@google.com> | 2017-06-20 19:16:41 +0000 |
commit | a26d10802bf99f4c9cc50e00b3aa084ecef72db3 (patch) | |
tree | 58eb06581f4a9fb426a3c793e716df8a5ba7a4b9 | |
parent | ff3f912e74473ddae39fa261eeeae2ac6777c392 (diff) | |
download | llvm-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.cc | 3 |
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> |