From a14d83288432a13d45f0aa105c5ab18320ae5fa1 Mon Sep 17 00:00:00 2001 From: Shigeki Ohtsu Date: Thu, 22 Sep 2016 21:19:10 +0900 Subject: [PATCH] test: remove openssl options of -no_ 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 --- test/parallel/test-tls-no-sslv3.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/parallel/test-tls-no-sslv3.js b/test/parallel/test-tls-no-sslv3.js index ce0c59bd0629b8..c284356ce37bb6 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