summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-securepair-server.js
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@ohtsu.org>2018-02-26 01:20:17 +0900
committerShigeki Ohtsu <ohtsu@ohtsu.org>2018-04-10 06:45:45 +0900
commit425c5ca27d25b35091783262ea21baef1f742579 (patch)
tree612d797f36b8aa9e2fe74df4c74a07b36ce7ab40 /test/parallel/test-tls-securepair-server.js
parent08af7dba2aa7ea49858d0f05c68fd21cdadf4c15 (diff)
downloadandroid-node-v8-425c5ca27d25b35091783262ea21baef1f742579.tar.gz
android-node-v8-425c5ca27d25b35091783262ea21baef1f742579.tar.bz2
android-node-v8-425c5ca27d25b35091783262ea21baef1f742579.zip
test: remove openssl -no_rand_screen opts
This option was made from the floating patch of d269e07. It is no longer needed because the issue was resolved in OpenSSL-1.1.0. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'test/parallel/test-tls-securepair-server.js')
-rw-r--r--test/parallel/test-tls-securepair-server.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/parallel/test-tls-securepair-server.js b/test/parallel/test-tls-securepair-server.js
index 056eebda0e..994e037c05 100644
--- a/test/parallel/test-tls-securepair-server.js
+++ b/test/parallel/test-tls-securepair-server.js
@@ -113,10 +113,6 @@ server.listen(0, common.mustCall(function() {
const args = ['s_client', '-connect', `127.0.0.1:${this.address().port}`];
- // for the performance and stability issue in s_client on Windows
- if (common.isWindows)
- args.push('-no_rand_screen');
-
const client = spawn(common.opensslCli, args);