From 00b221942009e0f438275bd482cf15f4ee8521b5 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 14 Apr 2016 16:02:18 -0700 Subject: [PATCH] test: move debugger tests to sequential MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The debugger tests in parallel fail with `make test` sometimes (all the time?). This appears to be related to running in parallel, as it does not fail with `make test-ci`, when run via `tools/test.py` or directly from the command line with `./node test/parallel/test-debugger-util-regression.js`. A separate issue may be opened to find out why it is failing in parallel, but for now, I think it's important to fix `make test` promptly. I suspect the issue is that the tests are relying on a default port somewhere and so they are colliding when run in parallel. But that's just a guess for the moment. PR-URL: https://github.com/nodejs/node/pull/6205 Fixes: https://github.com/nodejs/node/issues/6201 Reviewed-By: Jeremiah Senkpiel Reviewed-By: Johan Bergström --- test/{parallel => sequential}/test-debugger-repeat-last.js | 0 test/{parallel => sequential}/test-debugger-util-regression.js | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename test/{parallel => sequential}/test-debugger-repeat-last.js (100%) rename test/{parallel => sequential}/test-debugger-util-regression.js (100%) diff --git a/test/parallel/test-debugger-repeat-last.js b/test/sequential/test-debugger-repeat-last.js similarity index 100% rename from test/parallel/test-debugger-repeat-last.js rename to test/sequential/test-debugger-repeat-last.js diff --git a/test/parallel/test-debugger-util-regression.js b/test/sequential/test-debugger-util-regression.js similarity index 100% rename from test/parallel/test-debugger-util-regression.js rename to test/sequential/test-debugger-util-regression.js