blob: 4e2b043ada08ba9d4bdb48de9eaf62dfe4b92b25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function run_test()
{
// Try crashing with a runtime abort
do_crash(function() {
crashType = CrashTestUtils.CRASH_MOZ_CRASH;
crashReporter.annotateCrashReport("TestKey", "TestValue");
},
function(mdump, extra) {
do_check_eq(extra.TestKey, "TestValue");
do_check_false("OOMAllocationSize" in extra);
do_check_false("JSOutOfMemory" in extra);
do_check_false("JSLargeAllocationFailure" in extra);
},
// process will exit with a zero exit status
true);
}
|