michael@0: // |jit-test| slow; michael@0: michael@0: function TestCase(n, d, e, a) {} michael@0: var lfcode = new Array(); michael@0: lfcode.push(""); michael@0: lfcode.push("\ michael@0: var summary = 'foo';\ michael@0: test();\ michael@0: function test() {\ michael@0: test(\"TEST-UNEXPECTED-FAIL | TestPerf | \" + summary);\ michael@0: }\ michael@0: "); michael@0: lfcode.push("gczeal(2);"); michael@0: lfcode.push("\ michael@0: new TestCase(TestFunction_3( \"P\", \"A\", \"S\", \"S\" ) +\"\");\ michael@0: new TestCase(TestFunction_4( \"F\", \"A\", (\"length\"), \"L\" ) +\"\");\ michael@0: function TestFunction_3( a, b, c, d, e ) {\ michael@0: TestFunction_3(arguments);\ michael@0: }\ michael@0: "); michael@0: while (true) { michael@0: var file = lfcode.shift(); if (file == undefined) { break; } michael@0: try { evaluate(file); } catch (lfVare) {} michael@0: }