diff options
author | Johan Bergström <bugs@bergstroem.nu> | 2015-03-04 12:11:21 +1100 |
---|---|---|
committer | Shigeki Ohtsu <ohtsu@iij.ad.jp> | 2015-03-05 10:31:41 +0900 |
commit | 671fbd5a9de03c5ede968ef6c6b365965a546a55 (patch) | |
tree | 771b3158d781911def96ffbd50bd9d4cad4b0077 /test/parallel/test-tls-sni-server-client.js | |
parent | c7ad320472d69962b48e10e564682f24dd31d1d1 (diff) | |
download | node-new-671fbd5a9de03c5ede968ef6c6b365965a546a55.tar.gz |
test: refactor all tests that depends on crypto
we had a few ways versions of looking for support before executing a test. this
commit unifies them as well as add the check for all tests that previously
lacked them. found by running `./configure --without-ssl && make test`. also,
produce tap skip output if the test is skipped.
PR-URL: https://github.com/iojs/io.js/pull/1049
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
Diffstat (limited to 'test/parallel/test-tls-sni-server-client.js')
-rw-r--r-- | test/parallel/test-tls-sni-server-client.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/parallel/test-tls-sni-server-client.js b/test/parallel/test-tls-sni-server-client.js index 668f6228e5..7a1d09b9c2 100644 --- a/test/parallel/test-tls-sni-server-client.js +++ b/test/parallel/test-tls-sni-server-client.js @@ -6,8 +6,13 @@ if (!process.features.tls_sni) { var common = require('../common'), assert = require('assert'), - fs = require('fs'), - tls = require('tls'); + fs = require('fs'); + +if (!common.hasCrypto) { + console.log('1..0 # Skipped: missing crypto'); + process.exit(); +} +var tls = require('tls'); function filenamePEM(n) { return require('path').join(common.fixturesDir, 'keys', n + '.pem'); |