From 69298d36cfe1d5ad2ade0e64586959cc18c7ea4e Mon Sep 17 00:00:00 2001 From: Sakthipriyan Vairamani Date: Mon, 6 Jul 2015 03:24:12 +0000 Subject: test: formatting skip messages for TAP parsing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch makes the skip messages consistent so that the TAP plugin in CI can parse the messages properly. The format will be 1..0 # Skipped: [Actual reason why the test is skipped] PR-URL: https://github.com/nodejs/io.js/pull/2109 Reviewed-By: Ben Noordhuis Reviewed-By: Johan Bergström --- test/parallel/test-net-connect-options-ipv6.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/parallel/test-net-connect-options-ipv6.js') diff --git a/test/parallel/test-net-connect-options-ipv6.js b/test/parallel/test-net-connect-options-ipv6.js index 0ac1367ede..f0f7bc65b3 100644 --- a/test/parallel/test-net-connect-options-ipv6.js +++ b/test/parallel/test-net-connect-options-ipv6.js @@ -5,7 +5,7 @@ var net = require('net'); var dns = require('dns'); if (!common.hasIPv6) { - console.error('Skipping test, no IPv6 support'); + console.log('1..0 # Skipped: no IPv6 support'); return; } -- cgit v1.2.1