[compiler-rt] r314344 - [scudo] Temporary disabling the valloc test on armhf
Kostya Kortchinsky via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 27 14:10:25 PDT 2017
Author: cryptoad
Date: Wed Sep 27 14:10:25 2017
New Revision: 314344
URL: http://llvm.org/viewvc/llvm-project?rev=314344&view=rev
Log:
[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
Modified:
compiler-rt/trunk/test/scudo/valloc.cpp
Modified: compiler-rt/trunk/test/scudo/valloc.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/scudo/valloc.cpp?rev=314344&r1=314343&r2=314344&view=diff
==============================================================================
--- compiler-rt/trunk/test/scudo/valloc.cpp (original)
+++ compiler-rt/trunk/test/scudo/valloc.cpp Wed Sep 27 14:10:25 2017
@@ -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.
More information about the llvm-commits
mailing list