mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

This patch uses `return` statement to skip the test instead of using `process.exit` call. PR-URL: https://github.com/nodejs/io.js/pull/2109 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
28 lines
592 B
JavaScript
28 lines
592 B
JavaScript
'use strict';
|
|
if (process.platform === 'win32') {
|
|
console.log('1..0 # Skipped: 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);
|
|
}
|
|
}
|