summaryrefslogtreecommitdiff
path: root/test/parallel/test-listen-fd-detached-inherit.js
diff options
context:
space:
mode:
authorVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-07-01 02:29:09 +0300
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-07-04 12:41:49 +0300
commit2d2986ae72f2f5c63d95a94f05fa996d9f0609f1 (patch)
tree7a92ba45eb1ec041a2f9e40b0e63ac5c0be409c0 /test/parallel/test-listen-fd-detached-inherit.js
parentcc1a47dc6b94b2feb4de9e46be9333d81d537783 (diff)
downloadnode-new-2d2986ae72f2f5c63d95a94f05fa996d9f0609f1.tar.gz
test: simplify test skipping
* Make common.skip() exit. Also add common.printSkipMessage() for partial skips. * Don't make needless things before skip PR-URL: https://github.com/nodejs/node/pull/14021 Fixes: https://github.com/nodejs/node/issues/14016 Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'test/parallel/test-listen-fd-detached-inherit.js')
-rw-r--r--test/parallel/test-listen-fd-detached-inherit.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/parallel/test-listen-fd-detached-inherit.js b/test/parallel/test-listen-fd-detached-inherit.js
index f3f33055ac..aad8d663c9 100644
--- a/test/parallel/test-listen-fd-detached-inherit.js
+++ b/test/parallel/test-listen-fd-detached-inherit.js
@@ -21,16 +21,14 @@
'use strict';
const common = require('../common');
+if (common.isWindows)
+ common.skip('This test is disabled on windows.');
+
const assert = require('assert');
const http = require('http');
const net = require('net');
const spawn = require('child_process').spawn;
-if (common.isWindows) {
- common.skip('This test is disabled on windows.');
- return;
-}
-
switch (process.argv[2]) {
case 'child': return child();
case 'parent': return parent();