aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-no-sslv3.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-no-sslv3.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-no-sslv3.js')
-rw-r--r--test/parallel/test-tls-no-sslv3.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/parallel/test-tls-no-sslv3.js b/test/parallel/test-tls-no-sslv3.js
index 92f8512862..4cbb62e3d5 100644
--- a/test/parallel/test-tls-no-sslv3.js
+++ b/test/parallel/test-tls-no-sslv3.js
@@ -23,10 +23,6 @@ server.listen(0, '127.0.0.1', function() {
'-ssl3',
'-connect', address];
- // 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, { stdio: 'pipe' });
client.stdout.pipe(process.stdout);
client.stderr.pipe(process.stderr);