From 6f3d60388eb8be4f24e6e8312f7bc85f5f8773c3 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Wed, 11 Dec 2013 21:20:17 +0400 Subject: gyp: build openssl-cli tool and use it in tests fix #6663 --- test/pummel/test-tls-ci-reneg-attack.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'test/pummel/test-tls-ci-reneg-attack.js') diff --git a/test/pummel/test-tls-ci-reneg-attack.js b/test/pummel/test-tls-ci-reneg-attack.js index b077ef4b2f..16d7e2952c 100644 --- a/test/pummel/test-tls-ci-reneg-attack.js +++ b/test/pummel/test-tls-ci-reneg-attack.js @@ -28,11 +28,6 @@ var fs = require('fs'); // renegotiation limits to test var LIMITS = [0, 1, 2, 3, 5, 10, 16]; -if (process.platform === 'win32') { - console.log('Skipping test, you probably don\'t have openssl installed.'); - process.exit(); -} - (function() { var n = 0; function next() { @@ -63,7 +58,7 @@ function test(next) { server.listen(common.PORT, function() { var args = ('s_client -connect 127.0.0.1:' + common.PORT).split(' '); - var child = spawn('openssl', args); + var child = spawn(common.opensslCli, args); child.stdout.pipe(process.stdout); child.stderr.pipe(process.stderr); -- cgit v1.2.1