michael@0: // |jit-test| allow-oom michael@0: var STATUS = "STATUS: "; michael@0: var callStack = new Array(); michael@0: function startTest() { } michael@0: function TestCase(n, d, e, a) { michael@0: this.name = n; michael@0: } michael@0: TestCase.prototype.dump = function () {}; michael@0: TestCase.prototype.testPassed = (function TestCase_testPassed() { return this.passed; }); michael@0: TestCase.prototype.testFailed = (function TestCase_testFailed() { return !this.passed; }); michael@0: function printStatus (msg) { michael@0: var lines = msg.split ("\n"); michael@0: for (var i=0; i