1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_5/Function/Function-arguments-gc.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 1.4 +// |reftest| skip-if(Android) 1.5 +/* 1.6 + * Any copyright is dedicated to the Public Domain. 1.7 + * http://creativecommons.org/licenses/publicdomain/ 1.8 + * Contributor: 1.9 + * Christian Holler <decoder@own-hero.net> 1.10 + */ 1.11 + 1.12 +//----------------------------------------------------------------------------- 1.13 +var BUGNUMBER = 623301; 1.14 +var summary = "Properly root argument names during Function()"; 1.15 +print(BUGNUMBER + ": " + summary); 1.16 + 1.17 +/************** 1.18 + * BEGIN TEST * 1.19 + **************/ 1.20 + 1.21 +if (typeof gczeal === "function") 1.22 + gczeal(2); 1.23 + 1.24 +function crashMe(n) 1.25 +{ 1.26 + var nasty = []; 1.27 + while (n--) 1.28 + nasty.push("a" + n); 1.29 + return Function.apply(null, nasty); 1.30 +} 1.31 + 1.32 +var count = 64; // exact value not important 1.33 +assertEq(crashMe(count + 1).length, count); 1.34 + 1.35 +if (typeof gczeal === "function") 1.36 + gczeal(0); // reset 1.37 + 1.38 +/******************************************************************************/ 1.39 + 1.40 +if (typeof reportCompare === "function") 1.41 + reportCompare(true, true); 1.42 + 1.43 +print("All tests passed!");