summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/test/unit/test_crash_moz_crash.js
blob: 6016957d4455715625b261063873fe0a9e508c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
add_task(async function run_test() {
  // Try crashing with a runtime abort
  await do_crash(
    function () {
      crashType = CrashTestUtils.CRASH_MOZ_CRASH;
      crashReporter.annotateCrashReport("TestKey", "TestValue");
    },
    function (mdump, extra) {
      Assert.equal(extra.TestKey, "TestValue");
      Assert.equal(false, "OOMAllocationSize" in extra);
      Assert.equal(false, "JSOutOfMemory" in extra);
      Assert.equal(false, "JSLargeAllocationFailure" in extra);
    },
    // process will exit with a zero exit status
    true
  );
});