summaryrefslogtreecommitdiff
path: root/test/scudo
diff options
context:
space:
mode:
authorKostya Kortchinsky <kostyak@google.com>2018-01-04 18:35:28 +0000
committerKostya Kortchinsky <kostyak@google.com>2018-01-04 18:35:28 +0000
commit5e2aaab565e2eb3ac13d3c9e1ba50813fd476351 (patch)
tree55307c368e4d08157f614f9d9b9a7e6591fde36d /test/scudo
parent545f65f1a4918b3f7cab43fc0f7ada8c846e61e9 (diff)
[scudo] Attempt to re-enable the valloc test on armhf
Summary: It used to fail on the bots, but I could not repro it locally. So turn it back on to try and see if it still fails and maybe get to the heart of it. Reviewers: alekseyshl, flowerhack Reviewed By: alekseyshl Subscribers: aemerson, srhines, kristof.beyls, llvm-commits, #sanitizers Differential Revision: https://reviews.llvm.org/D41707 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@321812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/scudo')
-rw-r--r--test/scudo/valloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scudo/valloc.c b/test/scudo/valloc.c
index 132c4f280..a75071386 100644
--- a/test/scudo/valloc.c
+++ b/test/scudo/valloc.c
@@ -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, armhf-linux
+// UNSUPPORTED: android
// Tests that valloc and pvalloc work as intended.