summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/test/unit/test_crash_moz_crash.js
blob: 22eb36b8167c8a22ec22a35c6b2aadd3e773310d (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
  );
});