Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

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.
  • Loading branch information
Shigeki Ohtsu committed Jun 1, 2015
1 parent 9f0f7c3 commit 2ff517e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/simple/test-tls-server-verify.js
Expand Up @@ -150,6 +150,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 2ff517e

Please sign in to comment.