blob: 19525bb605350afbea741ce2c661b68be0b8204d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// enable crash reporting first
var cwd = Services.dirsvc.get("CurWorkD", Ci.nsIFile);
// get the temp dir
var _tmpd = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsIFile);
_tmpd.initWithPath(Services.env.get("XPCSHELL_TEST_TEMP_DIR"));
// Allow `crashReporter` to be used as an alias in the tests.
var crashReporter = Services.appinfo;
// We need to call this or crash events go in an undefined location.
Services.appinfo.UpdateCrashEventsDir();
// Setting the minidump path is not allowed in content processes
var processType = Services.appinfo.processType;
if (processType == Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT) {
Services.appinfo.minidumpPath = _tmpd;
}
var protocolHandler = Services.io
.getProtocolHandler("resource")
.QueryInterface(Ci.nsIResProtocolHandler);
var curDirURI = Services.io.newFileURI(cwd);
protocolHandler.setSubstitution("test", curDirURI);
const { CrashTestUtils } = ChromeUtils.importESModule(
"resource://test/CrashTestUtils.sys.mjs"
);
var crashType = CrashTestUtils.CRASH_INVALID_POINTER_DEREF;
var shouldDelay = false;
|