mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
52bae222a3
The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
31 lines
603 B
JavaScript
31 lines
603 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (common.isWindows) {
|
|
common.skip('on windows, because clustered dgram is ENOTSUP');
|
|
return;
|
|
}
|
|
|
|
var cluster = require('cluster');
|
|
var dgram = require('dgram');
|
|
|
|
if (cluster.isMaster) {
|
|
var unbound = cluster.fork().on('online', bind);
|
|
|
|
function bind() {
|
|
cluster.fork({BOUND: 'y'}).on('listening', disconnect);
|
|
}
|
|
|
|
function disconnect() {
|
|
unbound.disconnect();
|
|
unbound.on('disconnect', cluster.disconnect);
|
|
}
|
|
} else {
|
|
if (process.env.BOUND === 'y') {
|
|
var source = dgram.createSocket('udp4');
|
|
|
|
source.bind(0);
|
|
}
|
|
}
|