Closed Bug 717464 Opened 13 years ago Closed 12 years ago

Assertion failure: cx->isExceptionPending(), at js/src/jsfun.cpp:1882

Categories

(Core :: JavaScript Engine, defect)

x86_64
Linux
defect
Not set
critical

Tracking

()

RESOLVED WORKSFORME

People

(Reporter: decoder, Unassigned)

Details

(Keywords: assertion, testcase, Whiteboard: [jsbugmon:update,ignore])

The following test crashes on mozilla-central revision 4de07a341aab (options -m -n -a):


var lfcode = new Array();
lfcode.push("\
    gcparam('maxBytes', gcparam('gcBytes') + 4*1024);\
    for (var i = 0, curReal = realRange.min; i < numCols; ++i, curReal += realStep) {\
            curImag = imagRange.max;\
    }\
");
lfcode.push("\
    var f = Function('some_arg'+i, ' return /test/;');\
");
while (true) {
        var file = lfcode.shift(); if (file == undefined) { break; }
                loadFile(file);
}
function loadFile(lfVarx) {
        try {
                if (lfVarx.substr(-3) == ".js") {
                } else {
                        evaluate(lfVarx);
                }
        } catch (lfVare) {
        }
}


Looks like an OOM issue, test is fragile.
Whiteboard: js-triage-needed → [jsbugmon:update]
Whiteboard: [jsbugmon:update] → [jsbugmon:update,ignore]
JSBugMon: The testcase found in this bug no longer reproduces (tried revision ee1fb253dfce).
Given that this is an OOM test, it's unlikely to be reproduced with this test in the future, but we'll hit it again during regular OOM testing. Closing this as WFM now.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → WORKSFORME
You need to log in before you can comment on or make changes to this bug.