aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ArenaAllocTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ArenaAllocTest.cpp')
-rw-r--r--tests/ArenaAllocTest.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/ArenaAllocTest.cpp b/tests/ArenaAllocTest.cpp
index b565095776..137e60e135 100644
--- a/tests/ArenaAllocTest.cpp
+++ b/tests/ArenaAllocTest.cpp
@@ -181,12 +181,3 @@ DEF_TEST(ArenaAlloc, r) {
REPORTER_ASSERT(r, created == 1);
REPORTER_ASSERT(r, destroyed == 1);
}
-
-// Chromium bug: https://bugs.chromium.org/p/chromium/issues/detail?id=744109
-// Must be compiled with target_cpu = "x86" to fail with segfault.
-DEF_TEST(ArenaAllocReallyBigAlloc, r) {
- SkSTArenaAlloc<64> arena;
- using T = struct {int f[1<<28];};
- auto a = arena.makeArrayDefault<T>(3);
- a[2].f[(1<<28) - 1] = 0;
-}