diff options
author | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2015-07-06 03:24:12 +0000 |
---|---|---|
committer | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2015-07-20 15:46:30 +0530 |
commit | 69298d36cfe1d5ad2ade0e64586959cc18c7ea4e (patch) | |
tree | 4a59741049b6fd52fdfd14e285c060f5c61cf543 /test/parallel/test-https-foafssl.js | |
parent | 6b85d5a4b356598e2a561ed23e6019bc45456bc8 (diff) | |
download | node-new-69298d36cfe1d5ad2ade0e64586959cc18c7ea4e.tar.gz |
test: formatting skip messages for TAP parsing
This patch makes the skip messages consistent so that the TAP plugin
in CI can parse the messages properly. The format will be
1..0 # Skipped: [Actual reason why the test is skipped]
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>
Diffstat (limited to 'test/parallel/test-https-foafssl.js')
-rw-r--r-- | test/parallel/test-https-foafssl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-https-foafssl.js b/test/parallel/test-https-foafssl.js index f9b382ad83..5ada00c924 100644 --- a/test/parallel/test-https-foafssl.js +++ b/test/parallel/test-https-foafssl.js @@ -2,7 +2,7 @@ var common = require('../common'); if (!common.opensslCli) { - console.error('Skipping because node compiled without OpenSSL CLI.'); + console.log('1..0 # Skipped: node compiled without OpenSSL CLI.'); process.exit(0); } |