mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
587594165b
--HG-- extra : rebase_source : 5b7d10cb2e117deabb89b75ec3f3b1a221b3c80b
20 lines
565 B
JavaScript
20 lines
565 B
JavaScript
function run_test()
|
|
{
|
|
if (!("@mozilla.org/toolkit/crash-reporter;1" in Components.classes)) {
|
|
dump("INFO | test_crash_purevirtual.js | Can't test crashreporter in a non-libxul build.\n");
|
|
return;
|
|
}
|
|
|
|
do_crash(
|
|
function() {
|
|
crashType = CrashTestUtils.CRASH_OOM;
|
|
crashReporter.annotateCrashReport("TestingOOMCrash", "Yes");
|
|
},
|
|
function(mdump, extra) {
|
|
do_check_eq(extra.TestingOOMCrash, "Yes");
|
|
do_check_true("OOMAllocationSize" in extra);
|
|
do_check_true(Number(extra.OOMAllocationSize) > 0);
|
|
},
|
|
true);
|
|
}
|