test: do not swallow OpenSSL support error
authorRich Trott <rtrott@gmail.com>
Tue, 23 Jun 2015 18:26:56 +0000 (11:26 -0700)
committerRich Trott <rtrott@gmail.com>
Thu, 25 Jun 2015 18:13:35 +0000 (11:13 -0700)
PR-URL: https://github.com/nodejs/io.js/pull/2042
Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
test/parallel/test-crypto.js

index 2555cf4..47f0430 100644 (file)
@@ -18,20 +18,7 @@ var caPem = fs.readFileSync(common.fixturesDir + '/test_ca.pem', 'ascii');
 var certPem = fs.readFileSync(common.fixturesDir + '/test_cert.pem', 'ascii');
 var certPfx = fs.readFileSync(common.fixturesDir + '/test_cert.pfx');
 var keyPem = fs.readFileSync(common.fixturesDir + '/test_key.pem', 'ascii');
-
-
-// TODO(indunty): move to a separate test eventually
-try {
-  var tls = require('tls');
-  var context = tls.createSecureContext({
-    key: keyPem,
-    cert: certPem,
-    ca: caPem
-  });
-} catch (e) {
-  console.log('Not compiled with OPENSSL support.');
-  process.exit();
-}
+var tls = require('tls');
 
 // 'this' safety
 // https://github.com/joyent/node/issues/6690