blob: 8f1c192c1e24c3f85cb6702a2c05ea50b862f4db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
var gTestfile = 'parse-mega-huge-array.js';
//-----------------------------------------------------------------------------
var BUGNUMBER = 667527;
var summary = "JSON.parse should parse arrays of essentially unlimited size";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var body = "0,";
for (var i = 0; i < 21; i++)
body = body + body;
var str = '[' + body + '0]';
var arr = JSON.parse(str);
assertEq(arr.length, Math.pow(2, 21) + 1);
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|