mirror of https://github.com/nodejs/node.git
25 lines
757 B
JavaScript
25 lines
757 B
JavaScript
// Flags: --report-uncaught-exception
|
|
'use strict';
|
|
// Test report is suppressed on uncaught exception hook.
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const helper = require('../common/report');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const error = new Error('test error');
|
|
|
|
tmpdir.refresh();
|
|
process.report.directory = tmpdir.path;
|
|
|
|
// First, install an uncaught exception hook.
|
|
process.setUncaughtExceptionCaptureCallback(common.mustCall());
|
|
// Do not install process uncaughtException handler.
|
|
|
|
process.on('exit', (code) => {
|
|
assert.strictEqual(code, 0);
|
|
// Make sure no reports are generated.
|
|
const reports = helper.findReports(process.pid, tmpdir.path);
|
|
assert.strictEqual(reports.length, 0);
|
|
});
|
|
|
|
throw error;
|