diff options
Diffstat (limited to 'js/src/tests/js1_8_5/regress/regress-610026.js')
-rw-r--r-- | js/src/tests/js1_8_5/regress/regress-610026.js | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/js/src/tests/js1_8_5/regress/regress-610026.js b/js/src/tests/js1_8_5/regress/regress-610026.js new file mode 100644 index 000000000..e7b9df909 --- /dev/null +++ b/js/src/tests/js1_8_5/regress/regress-610026.js @@ -0,0 +1,48 @@ +/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */ +/* + * Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ + */ + +var expect = "pass"; +var actual; + +// Scripts used to be limited to 2**20 blocks, but no longer since the frontend +// rewrite. The exact limit-testing here should all pass now, not pass for +// 2**20 - 1 and fail for 2**20. +var s = "{}"; +for (var i = 0; i < 21; i++) + s += s; + +try { + eval(s); + actual = "pass"; +} catch (e) { + actual = "fail: " + e; +} + +assertEq(actual, expect); + +s += s.slice(0, -4); + +try { + eval(s); + actual = "pass"; +} catch (e) { + actual = "fail: " + e; +} + +assertEq(actual, expect); + +s += "{}"; + +try { + eval(s); + actual = "pass"; +} catch (e) { + actual = "fail: " + e; +} + +assertEq(actual, expect); + +reportCompare(0, 0, "ok"); |