mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
457 B
25 lines
457 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var N = 2;
|
|
var tickCount = 0;
|
|
var exceptionCount = 0;
|
|
|
|
function cb() {
|
|
++tickCount;
|
|
throw new Error();
|
|
}
|
|
|
|
for (var i = 0; i < N; ++i) {
|
|
process.nextTick(cb);
|
|
}
|
|
|
|
process.on('uncaughtException', function() {
|
|
++exceptionCount;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
process.removeAllListeners('uncaughtException');
|
|
assert.equal(tickCount, N);
|
|
assert.equal(exceptionCount, N);
|
|
});
|
|
|