aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-server-verify.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-tls-server-verify.js')
-rw-r--r--test/parallel/test-tls-server-verify.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/parallel/test-tls-server-verify.js b/test/parallel/test-tls-server-verify.js
index 6ee8ac433e..387ede8abc 100644
--- a/test/parallel/test-tls-server-verify.js
+++ b/test/parallel/test-tls-server-verify.js
@@ -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);