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.

PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
Michaël Zasso
2019-10-23 14:58:33 +02:00
parent 0aec0b2eae
commit 2707efd27b

View File

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