summaryrefslogtreecommitdiff
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.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-tls-server-verify.js b/test/parallel/test-tls-server-verify.js
index 825fdfc950..cbdf376c7f 100644
--- a/test/parallel/test-tls-server-verify.js
+++ b/test/parallel/test-tls-server-verify.js
@@ -3,7 +3,7 @@ var common = require('../common');
if (!common.opensslCli) {
console.log('1..0 # Skipped: node compiled without OpenSSL CLI.');
- process.exit(0);
+ return;
}
// This is a rather complex test which sets up various TLS servers with node
@@ -101,7 +101,7 @@ var testCases =
if (!common.hasCrypto) {
console.log('1..0 # Skipped: missing crypto');
- process.exit();
+ return;
}
var tls = require('tls');