diff options
author | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2015-08-02 19:36:43 +0530 |
---|---|---|
committer | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2015-08-03 21:32:48 +0530 |
commit | 80a1cf742599ef52235171e2e32f615b6b611007 (patch) | |
tree | c532b446b32f143ecc9eb31915ecf80a28c73181 /test/parallel/test-child-process-fork-dgram.js | |
parent | 9bac1dbae90050624ef091d54f014ac4b3718a9c (diff) | |
download | node-new-80a1cf742599ef52235171e2e32f615b6b611007.tar.gz |
test: fix messages and use return to skip tests
This is a followup of https://github.com/nodejs/io.js/pull/2109.
The tests which didn't make it in #2109, are included in this patch.
The skip messages are supposed to follow the format
1..0 # Skipped: [Actual reason why the test is skipped]
and the tests should be skipped with the return statement.
PR-URL: https://github.com/nodejs/io.js/pull/2290
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Diffstat (limited to 'test/parallel/test-child-process-fork-dgram.js')
-rw-r--r-- | test/parallel/test-child-process-fork-dgram.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/parallel/test-child-process-fork-dgram.js b/test/parallel/test-child-process-fork-dgram.js index 8676481a17..f700960490 100644 --- a/test/parallel/test-child-process-fork-dgram.js +++ b/test/parallel/test-child-process-fork-dgram.js @@ -19,8 +19,9 @@ var assert = require('assert'); var common = require('../common'); if (common.isWindows) { - console.error('Sending dgram sockets to child processes not supported'); - process.exit(0); + console.log('1..0 # Skipped: Sending dgram sockets to child processes is ' + + 'not supported'); + return; } if (process.argv[2] === 'child') { |