summaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-uncaught-exception.js
blob: 69d0a3095e73688c565b81a55daeb3fea9c5560a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
'use strict';
// Installing a custom uncaughtException handler should override the default
// one that the cluster module installs.
// https://github.com/joyent/node/issues/2556

const common = require('../common');
const assert = require('assert');
const cluster = require('cluster');
const fork = require('child_process').fork;

const MAGIC_EXIT_CODE = 42;

const isTestRunner = process.argv[2] !== 'child';

if (isTestRunner) {
  const master = fork(__filename, ['child']);
  master.on('exit', common.mustCall((code) => {
    assert.strictEqual(code, MAGIC_EXIT_CODE);
  }));
} else if (cluster.isMaster) {
  process.on('uncaughtException', common.mustCall(() => {
    process.nextTick(() => process.exit(MAGIC_EXIT_CODE));
  }));
  cluster.fork();
  throw new Error('kill master');
} else { // worker
  process.exit();
}