Skip to content

Commit cf3700b

Browse files
ofrobotsitaloacasas
authored andcommitted
test: fix timing sensitivity in debugger test
test-debugger-util-regression.js was sensitive to timing, which seems to have changed enough with V8 5.7 to cause this test to fail. Fix the test to ensure we take debugger steps only at stable states instead of erroneously taking a step on a partially complete buffer. PR-URL: #11008 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 9264131 commit cf3700b

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

test/parallel/test-debugger-util-regression.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ const path = require('path');
44
const spawn = require('child_process').spawn;
55
const assert = require('assert');
66

7+
const DELAY = common.platformTimeout(200);
8+
79
const fixture = path.join(
810
common.fixturesDir,
911
'debugger-util-regression-fixture.js'
@@ -21,12 +23,16 @@ proc.stderr.setEncoding('utf8');
2123

2224
let stdout = '';
2325
let stderr = '';
26+
proc.stdout.on('data', (data) => stdout += data);
27+
proc.stderr.on('data', (data) => stderr += data);
2428

2529
let nextCount = 0;
2630
let exit = false;
2731

28-
proc.stdout.on('data', (data) => {
29-
stdout += data;
32+
// We look at output periodically. We don't do this in the on('data') as we
33+
// may end up processing partial output. Processing periodically ensures that
34+
// the debugger is in a stable state before we take the next step.
35+
const timer = setInterval(() => {
3036
if (stdout.includes('> 1') && nextCount < 1 ||
3137
stdout.includes('> 2') && nextCount < 2 ||
3238
stdout.includes('> 3') && nextCount < 3 ||
@@ -36,14 +42,14 @@ proc.stdout.on('data', (data) => {
3642
} else if (!exit && (stdout.includes('< { a: \'b\' }'))) {
3743
exit = true;
3844
proc.stdin.write('.exit\n');
45+
// We can cancel the timer and terminate normally.
46+
clearInterval(timer);
3947
} else if (stdout.includes('program terminated')) {
4048
// Catch edge case present in v4.x
4149
// process will terminate after call to util.inspect
4250
common.fail('the program should not terminate');
4351
}
44-
});
45-
46-
proc.stderr.on('data', (data) => stderr += data);
52+
}, DELAY);
4753

4854
process.on('exit', (code) => {
4955
assert.strictEqual(code, 0, 'the program should exit cleanly');

0 commit comments

Comments
 (0)