ce1a5e3c9c
- Use `path` module from browser process in sandboxed renderer. This is required because the return value of `path.join` is platform-specific, and this is an assumtion of crash-reporter.js which is shared between sandboxed and non-sandboxed renderers. - Set `process.platform` and `process.execPath` in sandboxed renderer environment. This is required to spawn the windows crash service from sandboxed renderer. - Use a single temporary directory for all crashReporter tests. This is required to make tests more deterministic across platforms(since mac's crashpad doesn't support changing the crash dump directory). Also make a few improvements/fixes to the `uploadToServer` test.
25 lines
656 B
HTML
25 lines
656 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var url = require('url').parse(window.location.href, true);
|
|
var uploadToServer = !url.query.skipUpload;
|
|
var port = url.query.port;
|
|
var {crashReporter, ipcRenderer} = require('electron');
|
|
crashReporter.start({
|
|
productName: 'Zombies',
|
|
companyName: 'Umbrella Corporation',
|
|
submitURL: 'http://127.0.0.1:' + port,
|
|
uploadToServer: uploadToServer,
|
|
ignoreSystemCrashHandler: true,
|
|
extra: {
|
|
'extra1': 'extra1',
|
|
'extra2': 'extra2',
|
|
}
|
|
});
|
|
if (!uploadToServer) {
|
|
ipcRenderer.sendSync('list-existing-dumps')
|
|
}
|
|
setImmediate(function() { process.crash(); });
|
|
</script>
|
|
</body>
|
|
</html>
|