Skip to content

Commit

Permalink
test: add -no-rand-screen for tls-server-verify
Browse files Browse the repository at this point in the history
This improves the performance of openssl s_client on Windows and
gains several seconds to finish test-tls-server-verify.

(cherry picked from commit a78a1c74c1b4bbd87a8607cad98d4115948b647a)
  • Loading branch information
Shigeki Ohtsu authored and joaocgreis committed May 29, 2015
1 parent 258eaee commit ec14721
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/parallel/test-tls-server-verify.js
Expand Up @@ -134,6 +134,9 @@ function runClient(prefix, port, options, cb) {

var args = ['s_client', '-connect', '127.0.0.1:' + port];

// for the performance issue in s_client on Windows
if (process.platform === 'win32')
args.push('-no-rand-screen');

console.log(prefix + ' connecting with', options.name);

Expand Down

0 comments on commit ec14721

Please sign in to comment.