Skip to content

Commit ff975fe

Browse files
committed
test: remove debugger workaround for AIX
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>
1 parent e4462bd commit ff975fe

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/common/debugger.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,7 @@ function startCLI(args, flags = [], spawnOpts = {}) {
2323
if (this === child.stderr) {
2424
stderrOutput += chunk;
2525
}
26-
// TODO(trott): Figure out why the "breakpoints restored." message appears
27-
// in unpredictable places especially on AIX in CI. We shouldn't be
28-
// excluding it, but it gets in the way of the output checking for tests.
29-
outputBuffer.push(chunk.replace(/\n*\d+ breakpoints restored\.\n*/mg, ''));
26+
outputBuffer.push(chunk);
3027
}
3128

3229
function getOutput() {

0 commit comments

Comments
 (0)