summaryrefslogtreecommitdiff
path: root/test/scudo
diff options
context:
space:
mode:
authorKostya Kortchinsky <kostyak@google.com>2017-09-27 21:10:25 +0000
committerKostya Kortchinsky <kostyak@google.com>2017-09-27 21:10:25 +0000
commitb5a79d0a6cafbca510ef051589eecc91aaa0a2f4 (patch)
tree5aa350f6a0deffd0cb4c2daf77fcaeb933ba47e8 /test/scudo
parent24050b5ddef42f6f3306aa94d4a1f42a7893a9a7 (diff)
[scudo] Temporary disabling the valloc test on armhf
Summary: Weird failure where `errno != ENOMEM` on valloc failure. The returned pointer is null since it passes the previous assert, so this shouldn't happen. http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15-full/builds/10931 http://lab.llvm.org:8011/builders/clang-cmake-thumbv7-a15-full-sh/builds/2469 Disabling until we figure out what's going on. Reviewers: alekseyshl Reviewed By: alekseyshl Subscribers: aemerson, srhines, llvm-commits, kristof.beyls Differential Revision: https://reviews.llvm.org/D38324 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@314344 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/scudo')
-rw-r--r--test/scudo/valloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scudo/valloc.cpp b/test/scudo/valloc.cpp
index 8764502a1..514a88449 100644
--- a/test/scudo/valloc.cpp
+++ b/test/scudo/valloc.cpp
@@ -2,7 +2,7 @@
// RUN: %run %t valid 2>&1
// RUN: not %run %t invalid 2>&1
// RUN: %env_scudo_opts=allocator_may_return_null=1 %run %t invalid 2>&1
-// UNSUPPORTED: android
+// UNSUPPORTED: android, armhf-linux
// Tests that valloc and pvalloc work as intended.