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.
15 lines
316 B
15 lines
316 B
13 years ago
|
var assert = require('assert');
|
||
|
|
||
|
// recursively calling .exit() should not overflow the call stack
|
||
|
var nexits = 0;
|
||
|
|
||
|
process.on('exit', function(code) {
|
||
|
assert.equal(nexits++, 0);
|
||
|
assert.equal(code, 1);
|
||
|
|
||
|
// now override the exit code of 1 with 0 so that the test passes
|
||
11 years ago
|
process.exit(0);
|
||
13 years ago
|
});
|
||
|
|
||
|
process.exit(1);
|