summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/test/unit/test_crash_rust_panic.js
blob: dff1d6281afc9cec1e3c5f55011472876ab5e00a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
add_task(async function run_test() {
  // Try crashing with a Rust panic
  await do_crash(
    function () {
      Cc["@mozilla.org/xpcom/debug;1"]
        .getService(Ci.nsIDebug2)
        .rustPanic("OH NO");
    },
    function (mdump, extra) {
      Assert.equal(extra.MozCrashReason, "OH NO");
    },
    // process will exit with a zero exit status
    true
  );
});