v8/test/mjsunit/regress/regress-crbug-429159.js
mstarzinger@chromium.org cd3273b562 Properly handle stack overflows in the AST graph builder.
R=jarin@chromium.org
BUG=chromium:429159
TEST=mjsunit/regress/regress-crbug-429159
LOG=N

Review URL: https://codereview.chromium.org/697473006

Cr-Commit-Position: refs/heads/master@{#25037}
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25037 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2014-10-31 14:02:46 +00:00

13 lines
397 B
JavaScript

// Copyright 2014 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.
try {
var src = "return " + Array(12000).join("src,") + "src";
var fun = Function(src);
assertEquals(src, fun());
} catch (e) {
// Some architectures throw a RangeError, that is fine.
assertInstanceof(e, RangeError);
}