summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-socket-constructor-alpn-options-parsing.js
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2018-06-02 10:52:59 +0200
committerAnna Henningsen <anna@addaleax.net>2018-06-08 00:53:37 +0200
commita76f0298184115971bac56dd369418786569f76d (patch)
treea337f105fb3c0cd36e53098d4badbadab2bbde49 /test/parallel/test-tls-socket-constructor-alpn-options-parsing.js
parentefdc1a44bb540375110720882f3f978cf20b1259 (diff)
downloadnode-new-a76f0298184115971bac56dd369418786569f76d.tar.gz
lib,src: remove openssl feature conditionals
Remove compile-time and run-time conditionals for features that OpenSSL 1.0.0 and 1.0.1 didn't support: ALPN, OCSP and/or SNI. They are no longer necessary since our baseline is OpenSSL 1.0.2. PR-URL: https://github.com/nodejs/node/pull/21094 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-tls-socket-constructor-alpn-options-parsing.js')
-rw-r--r--test/parallel/test-tls-socket-constructor-alpn-options-parsing.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/parallel/test-tls-socket-constructor-alpn-options-parsing.js b/test/parallel/test-tls-socket-constructor-alpn-options-parsing.js
index edbc9f63cf..6b0a23f31b 100644
--- a/test/parallel/test-tls-socket-constructor-alpn-options-parsing.js
+++ b/test/parallel/test-tls-socket-constructor-alpn-options-parsing.js
@@ -13,9 +13,6 @@ new tls.TLSSocket(null, {
ALPNProtocols: ['http/1.1'],
});
-if (!process.features.tls_alpn)
- common.skip('node compiled without ALPN feature of OpenSSL');
-
const assert = require('assert');
const net = require('net');
const fixtures = require('../common/fixtures');