Skip to content

Commit 2952c5d

Browse files
targosMylesBorins
authored andcommitted
test: increase limit again for network space overhead test
On certain platforms, updating V8 to 7.9 made the numbers a bit higher than the current limit. Backport-PR-URL: #30513 PR-URL: #30020 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
1 parent f0ff2ed commit 2952c5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sequential/test-net-bytes-per-incoming-chunk-overhead.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ process.on('exit', () => {
3737
const bytesPerChunk =
3838
(process.memoryUsage().rss - baseRSS) / receivedChunks.length;
3939
// We should always have less than one page (usually ~ 4 kB) per chunk.
40-
assert(bytesPerChunk < 600, `measured ${bytesPerChunk} bytes per chunk`);
40+
assert(bytesPerChunk < 650, `measured ${bytesPerChunk} bytes per chunk`);
4141
});

0 commit comments

Comments
 (0)