Skip to content

Commit

Permalink
test: remove debugger workaround for AIX
Browse files Browse the repository at this point in the history
Optimistically removing workaround code in the debugger test tool.

PR-URL: #39296
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
Trott authored and targos committed Sep 4, 2021
1 parent 72a3419 commit 5462023
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/common/debugger.js
Expand Up @@ -23,10 +23,7 @@ function startCLI(args, flags = [], spawnOpts = {}) {
if (this === child.stderr) {
stderrOutput += chunk;
}
// TODO(trott): Figure out why the "breakpoints restored." message appears
// in unpredictable places especially on AIX in CI. We shouldn't be
// excluding it, but it gets in the way of the output checking for tests.
outputBuffer.push(chunk.replace(/\n*\d+ breakpoints restored\.\n*/mg, ''));
outputBuffer.push(chunk);
}

function getOutput() {
Expand Down

0 comments on commit 5462023

Please sign in to comment.