Skip to content

Commit f94d676

Browse files
authored
test: reduce iteration count in test-child-process-stdout-flush-exit
PR-URL: nodejs#58273 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 59a763e commit f94d676

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/parallel/test-child-process-stdout-flush-exit.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,14 @@ const assert = require('assert');
2525

2626
// If child process output to console and exit
2727
// The console.log statements here are part of the test.
28+
// Note: This test verifies specific behavior that is *not* guaranteed
29+
// by Node.js's API contract. See https://nodejs.org/api/process.html#processexitcode.
30+
// We are still generally interested in knowing when this test breaks,
31+
// since applications may rely on the implicit behavior of stdout having
32+
// a buffer size up to which they can write data synchronously.
2833
if (process.argv[2] === 'child') {
2934
console.log('hello');
30-
for (let i = 0; i < 200; i++) {
35+
for (let i = 0; i < 100; i++) {
3136
console.log('filler');
3237
}
3338
console.log('goodbye');

0 commit comments

Comments
 (0)