test: improve debug-break-on-uncaught reliability#6793
test: improve debug-break-on-uncaught reliability#6793Trott wants to merge 3 commits intonodejs:masterfrom
Conversation
|
LGTM if CI is green. |
|
Test is failing on several platforms with this: |
|
CI again to see if platforms are failing consistently or not: https://ci.nodejs.org/job/node-test-pull-request/2718/ |
|
The use of https://ci.nodejs.org/job/node-test-commit-linux/3463/nodes=ubuntu1404-64/console |
|
The latest change makes stuff better but still lots of fail. I'm going to move it back to |
|
Squashed and force pushed. PTAL. |
There was a problem hiding this comment.
Assumes that lines correspond with data events. I'd concatenate the output and scan that.
|
LGTM with a suggestion. |
|
LGTM |
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it.
|
implemented @bnoordhuis suggestion...onward to CI: https://ci.nodejs.org/job/node-test-pull-request/2755/ |
|
Still LGTM. Another /cc @nodejs/build - known issue? Happened several times yesterday, too. |
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: nodejs#6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
|
Landed in ff00a48 |
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: nodejs#6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: #6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
|
@Trott lts? |
|
@thealphanerd Yes, if it lands cleanly. |
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: #6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: #6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: #6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: #6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Running the test through CI reveals unreliability due to a race condition. These changes mitigate the race condition, but do not eliminate it. PR-URL: #6793 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Checklist
Affected core subsystem(s)
test debugger
Description of change
Move test-debug-break-on-uncaught from
debuggerdirectory tosequentialso that it gets exercised bymake testand via thecontinuous integration server for the project.
Removed unnecessary port number modification that is probable source of
unreliability on CI.