Commit bca38dbf authored by Ross McIlroy's avatar Ross McIlroy Committed by Commit Bot

[Tests] Fix some OOM failures on Android by explicitly setting max_old_space_size.

BUG=v8:8040

Change-Id: I8de22af3978f2a8eb844eabdb757bd635050f901
Reviewed-on: https://chromium-review.googlesource.com/1181432Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
Commit-Queue: Ross McIlroy <rmcilroy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#55227}
parent daff05a0
......@@ -648,9 +648,6 @@
'regress/regress-6288': [FAIL],
# OOM:
'regress/regress-599414-array-concat-fast-path': [FAIL],
'regress/regress-748069': [FAIL],
'regress/regress-752764': [FAIL],
'regress/regress-779407': [FAIL],
}], # 'system == android'
##############################################################################
......
......@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --max-old-space-size=1536
try {
var a = 'a'.repeat(1 << 28);
} catch (e) {
......
......@@ -3,6 +3,7 @@
// found in the LICENSE file.
// Flags: --allow-natives-syntax --nostress-incremental-marking
// Flags: --max-old-space-size=1536
// This test uses a lot of memory and fails with flaky OOM when run
// with --stress-incremental-marking on TSAN.
......
......@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --max-old-space-size=1536
var s = '\u1234-------';
for (var i = 0; i < 17; i++) {
try {
......
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