Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / v8 / test / mjsunit / regress / regress-crbug-429159.js
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 try {
6   var src = "return " + Array(12000).join("src,") + "src";
7   var fun = Function(src);
8   assertEquals(src, fun());
9 } catch (e) {
10   // Some architectures throw a RangeError, that is fine.
11   assertInstanceof(e, RangeError);
12 }