mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 05:21:19 +00:00

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>
30 lines
690 B
JavaScript
30 lines
690 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var cluster = require('cluster');
|
|
var net = require('net');
|
|
|
|
if (common.isWindows) {
|
|
common.skip('not reliable on Windows.');
|
|
return;
|
|
}
|
|
|
|
if (process.getuid() === 0) {
|
|
common.skip('Test is not supposed to be run as root.');
|
|
return;
|
|
}
|
|
|
|
if (cluster.isMaster) {
|
|
cluster.fork().on('exit', common.mustCall(function(exitCode) {
|
|
assert.equal(exitCode, 0);
|
|
}));
|
|
}
|
|
else {
|
|
var s = net.createServer(common.fail);
|
|
s.listen(42, common.fail.bind(null, 'listen should have failed'));
|
|
s.on('error', common.mustCall(function(err) {
|
|
assert.equal(err.code, 'EACCES');
|
|
process.disconnect();
|
|
}));
|
|
}
|