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>
This commit is contained in:
parent
c17a1fedd8
commit
53835a2092
@ -25,11 +25,7 @@ var stderr = '';
|
|||||||
server.listen(0, '127.0.0.1', function() {
|
server.listen(0, '127.0.0.1', function() {
|
||||||
var address = this.address().address + ':' + this.address().port;
|
var address = this.address().address + ':' + this.address().port;
|
||||||
var args = ['s_client',
|
var args = ['s_client',
|
||||||
'-no_ssl2',
|
|
||||||
'-ssl3',
|
'-ssl3',
|
||||||
'-no_tls1',
|
|
||||||
'-no_tls1_1',
|
|
||||||
'-no_tls1_2',
|
|
||||||
'-connect', address];
|
'-connect', address];
|
||||||
|
|
||||||
// for the performance and stability issue in s_client on Windows
|
// for the performance and stability issue in s_client on Windows
|
||||||
|
Loading…
x
Reference in New Issue
Block a user