Commit 3c42f0e9 authored by Chris Palmer's avatar Chris Palmer Committed by Commit Bot

Disable PartitionAllocTest.ZeroFill on Fuchsia.

It is flaky on that platform.

Bug: 966169
Change-Id: Ifb58e50c26370965213cf5a81d8c55a9d93d9fee
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1633033Reviewed-by: default avatarAlbert J. Wong <ajwong@chromium.org>
Commit-Queue: Chris Palmer <palmer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#663992}
parent 2140d224
...@@ -2184,7 +2184,14 @@ TEST_F(PartitionAllocTest, SmallReallocDoesNotMoveTrailingCookie) { ...@@ -2184,7 +2184,14 @@ TEST_F(PartitionAllocTest, SmallReallocDoesNotMoveTrailingCookie) {
generic_allocator.root()->Free(ptr); generic_allocator.root()->Free(ptr);
} }
TEST_F(PartitionAllocTest, ZeroFill) { // TODO(crbug.com/966169): This test is flaky on Fuchsia.
#if defined(OS_FUCHSIA)
#define MAYBE_ZeroFill DISABLED_ZeroFill
#else
#define MAYBE_ZeroFill ZeroFill
#endif // defined(OS_FUCHSIA)
TEST_F(PartitionAllocTest, MAYBE_ZeroFill) {
constexpr static size_t kAllZerosSentinel = constexpr static size_t kAllZerosSentinel =
std::numeric_limits<size_t>::max(); std::numeric_limits<size_t>::max();
for (size_t size : kTestSizes) { for (size_t size : kTestSizes) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment