summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-ocsp-callback.js
diff options
context:
space:
mode:
authorSakthipriyan Vairamani <thechargingvolcano@gmail.com>2015-08-02 19:36:43 +0530
committerSakthipriyan Vairamani <thechargingvolcano@gmail.com>2015-08-03 21:32:48 +0530
commit80a1cf742599ef52235171e2e32f615b6b611007 (patch)
treec532b446b32f143ecc9eb31915ecf80a28c73181 /test/parallel/test-tls-ocsp-callback.js
parent9bac1dbae90050624ef091d54f014ac4b3718a9c (diff)
downloadandroid-node-v8-80a1cf742599ef52235171e2e32f615b6b611007.tar.gz
android-node-v8-80a1cf742599ef52235171e2e32f615b6b611007.tar.bz2
android-node-v8-80a1cf742599ef52235171e2e32f615b6b611007.zip
test: fix messages and use return to skip tests
This is a followup of https://github.com/nodejs/io.js/pull/2109. The tests which didn't make it in #2109, are included in this patch. The skip messages are supposed to follow the format 1..0 # Skipped: [Actual reason why the test is skipped] and the tests should be skipped with the return statement. PR-URL: https://github.com/nodejs/io.js/pull/2290 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Diffstat (limited to 'test/parallel/test-tls-ocsp-callback.js')
-rw-r--r--test/parallel/test-tls-ocsp-callback.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-tls-ocsp-callback.js b/test/parallel/test-tls-ocsp-callback.js
index 2dbfc6c164..d970b2ab01 100644
--- a/test/parallel/test-tls-ocsp-callback.js
+++ b/test/parallel/test-tls-ocsp-callback.js
@@ -4,7 +4,7 @@ var common = require('../common');
if (!process.features.tls_ocsp) {
console.log('1..0 # Skipped: node compiled without OpenSSL or ' +
'with old OpenSSL version.');
- process.exit(0);
+ return;
}
if (!common.opensslCli) {
console.log('1..0 # Skipped: node compiled without OpenSSL CLI.');