From 5a235a5811de6ef6a2ced60861930ba5236d087f Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 26 Jul 2016 21:35:35 -0700 Subject: [PATCH] test: speed up test-net-reconnect-error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test takes 50 seconds on some of the project's Windows CI infrastructure. Reducing the test repetitions from 50 to 20 trims that to about 20 seconds. Tests will timeout at 60 seconds, so this helps keep the test reliable. (There was a timeout on CI today when testing an unrelated code change.) Refs: https://github.com/nodejs/node/pull/7827#issuecomment-235476222 PR-URL: https://github.com/nodejs/node/pull/7886 Reviewed-By: Santiago Gimeno Reviewed-By: JungMinu - Minwoo Jung Reviewed-By: Michaƫl Zasso --- test/parallel/test-net-reconnect-error.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-net-reconnect-error.js b/test/parallel/test-net-reconnect-error.js index ed889829ec8abe..4e322bd09d2914 100644 --- a/test/parallel/test-net-reconnect-error.js +++ b/test/parallel/test-net-reconnect-error.js @@ -2,7 +2,7 @@ var common = require('../common'); var net = require('net'); var assert = require('assert'); -var N = 50; +var N = 20; var client_error_count = 0; var disconnect_count = 0;