Skip to content

Commit 11a8b81

Browse files
Trotttargos
authored andcommitted
test: remove debugger workaround for AIX
Optimistically removing workaround code in the debugger test tool. PR-URL: #39296 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent b3a0dd1 commit 11a8b81

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Diff for: test/common/debugger.js

+1-4
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)