Skip to content

Commit 0d9cff1

Browse files
committed
test: remove debugger workaround for AIX
Optimistically removing workaround code in the debugger test tool.
1 parent a8a8638 commit 0d9cff1

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

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)