mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
26 lines
564 B
JavaScript
26 lines
564 B
JavaScript
require("../common");
|
|
|
|
var MESSAGE = 'catch me if you can';
|
|
var caughtException = false;
|
|
|
|
process.addListener('uncaughtException', function (e) {
|
|
puts("uncaught exception! 1");
|
|
assert.equal(MESSAGE, e.message);
|
|
caughtException = true;
|
|
});
|
|
|
|
process.addListener('uncaughtException', function (e) {
|
|
puts("uncaught exception! 2");
|
|
assert.equal(MESSAGE, e.message);
|
|
caughtException = true;
|
|
});
|
|
|
|
setTimeout(function() {
|
|
throw new Error(MESSAGE);
|
|
}, 10);
|
|
|
|
process.addListener("exit", function () {
|
|
puts("exit");
|
|
assert.equal(true, caughtException);
|
|
});
|