From b0486b14e5f92ddbbb71ac062cecac49cd477a7c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 4 Nov 2016 23:04:36 -0700 Subject: [PATCH] test: remove watchdog in test-debug-signal-cluster MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test-debug-signal-cluster contains a watchdog timer that results in false positives in CI. Remove the watchdog timer and let the test runner determine that the test has timed out. PR-URL: https://github.com/nodejs/node/pull/9476 Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: Santiago Gimeno Reviewed-By: James M Snell --- test/parallel/test-debug-signal-cluster.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/parallel/test-debug-signal-cluster.js b/test/parallel/test-debug-signal-cluster.js index c5931b7de4..24b362a687 100644 --- a/test/parallel/test-debug-signal-cluster.js +++ b/test/parallel/test-debug-signal-cluster.js @@ -65,10 +65,6 @@ function onNoMoreDebuggerAgentsOutput() { process.exit(); } -setTimeout(function testTimedOut() { - common.fail('test timed out'); -}, common.platformTimeout(4000)).unref(); - process.on('exit', function onExit() { // Kill processes in reverse order to avoid timing problems on Windows where // the parent process is killed before the children.