9c8f0f09ea
Execution tests regress-336820 and regress-678917 finished with error
messages "allocation failure GC in old space requested" and "fatal
javascript OOM in CALL_AND_RETRY_LAST". For successful execution,
parameter max_old_space_size must be increased and this is done inside
tests.
TEST=mjsunit/regress/regress-336820,
mjsunit/regress/regress-678917
BUG=
Review-Url: https://codereview.chromium.org/2907363003
Cr-Original-Commit-Position: refs/heads/master@{#45672}
Committed: 1550c86909
Review-Url: https://codereview.chromium.org/2907363003
Cr-Commit-Position: refs/heads/master@{#45681}
27 lines
459 B
JavaScript
27 lines
459 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// 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=400
|
|
|
|
s1 = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
|
|
s1 += s1;
|
|
s1 += s1;
|
|
s1 += s1;
|
|
s1 += s1;
|
|
|
|
s0 = 'a';
|
|
|
|
function g() {
|
|
for (var j = 0; j < 1000000; j++) {
|
|
s0 += s1;
|
|
}
|
|
}
|
|
|
|
try {
|
|
g();
|
|
} catch (e) {
|
|
}
|
|
|
|
assertEquals('x', s0[10]);
|