Index: third_party/WebKit/Source/platform/heap/HeapTest.cpp |
diff --git a/third_party/WebKit/Source/platform/heap/HeapTest.cpp b/third_party/WebKit/Source/platform/heap/HeapTest.cpp |
index 806293c5b1ec41889ac3a518e50804af0ab90ff4..c02c9d98a66fe09357832cc6aa6ec11052096c39 100644 |
--- a/third_party/WebKit/Source/platform/heap/HeapTest.cpp |
+++ b/third_party/WebKit/Source/platform/heap/HeapTest.cpp |
@@ -6286,7 +6286,10 @@ int DeepEagerly::sTraceLazy = 0; |
TEST(HeapTest, TraceDeepEagerly) |
{ |
-#if !ENABLE(ASSERT) |
+ // The allocation & GC overhead is considerable for this test, |
+ // straining debug builds and lower-end targets too much to be |
+ // worth running. |
+#if !ENABLE(ASSERT) && !OS(ANDROID) |
DeepEagerly* obj = nullptr; |
for (int i = 0; i < 10000000; i++) |
obj = new DeepEagerly(obj); |