Bug 976369 followup - Update regexp-match-limit.js jit-test on a CLOSED TREE.

This commit is contained in:
Jan de Mooij 2014-02-27 13:03:09 +01:00
parent 5df2a7a874
commit 905238c7b6

View File

@ -3,7 +3,7 @@
load(libdir + "asserts.js");
function test() {
var input = Array(999999+1).join('a');
var input = Array(2499999+1).join('a');
var result = /^([\w])+$/.test(input);
}
assertThrowsInstanceOf(test, InternalError);