Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
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: #8714
Reviewed-By: Fedor Indutny <fedor@indutny.com>
  • Loading branch information
shigeki authored and Myles Borins committed Sep 22, 2016
commit a14d83288432a13d45f0aa105c5ab18320ae5fa1
4 changes: 0 additions & 4 deletions test/parallel/test-tls-no-sslv3.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down