summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-exit-recursive.js
blob: 48ad8259168a90a29c6b1842b0b3f2cb90ac44a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';
require('../common');
const assert = require('assert');

// recursively calling .exit() should not overflow the call stack
let nexits = 0;

process.on('exit', function(code) {
  assert.strictEqual(nexits++, 0);
  assert.strictEqual(code, 1);

  // now override the exit code of 1 with 0 so that the test passes
  process.exit(0);
});

process.exit(1);