summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-no-sslv3.js
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@ohtsu.org>2016-09-22 21:19:10 +0900
committerShigeki Ohtsu <ohtsu@ohtsu.org>2016-09-22 23:06:56 +0900
commit53835a2092847aec8cd78f25fd819a01ff84c0cc (patch)
tree6589e435bfb2025e0224b8e527edfddeb7a9c846 /test/parallel/test-tls-no-sslv3.js
parentc17a1fedd8cea4b0c4c265adfcb9048b0918788b (diff)
downloadandroid-node-v8-53835a2092847aec8cd78f25fd819a01ff84c0cc.tar.gz
android-node-v8-53835a2092847aec8cd78f25fd819a01ff84c0cc.tar.bz2
android-node-v8-53835a2092847aec8cd78f25fd819a01ff84c0cc.zip
test: remove openssl options of -no_<prot>
openssl command does not allow to both "-ssl3" and "-no_tls1". A protocol connecting to the server is only specified. PR-URL: https://github.com/nodejs/node/pull/8714 Reviewed-By: Fedor Indutny <fedor@indutny.com>
Diffstat (limited to 'test/parallel/test-tls-no-sslv3.js')
-rw-r--r--test/parallel/test-tls-no-sslv3.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/parallel/test-tls-no-sslv3.js b/test/parallel/test-tls-no-sslv3.js
index ce0c59bd06..c284356ce3 100644
--- a/test/parallel/test-tls-no-sslv3.js
+++ b/test/parallel/test-tls-no-sslv3.js
@@ -25,11 +25,7 @@ var stderr = '';
server.listen(0, '127.0.0.1', function() {
var address = this.address().address + ':' + this.address().port;
var args = ['s_client',
- '-no_ssl2',
'-ssl3',
- '-no_tls1',
- '-no_tls1_1',
- '-no_tls1_2',
'-connect', address];
// for the performance and stability issue in s_client on Windows