From 6fb59e6b6bbf96e033cfdd665816d1c8baed4f9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 23 Oct 2019 14:58:33 +0200 Subject: [PATCH] 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. --- test/sequential/test-net-bytes-per-incoming-chunk-overhead.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sequential/test-net-bytes-per-incoming-chunk-overhead.js b/test/sequential/test-net-bytes-per-incoming-chunk-overhead.js index c2275b570ca08e..46c1f6d1a5885c 100644 --- a/test/sequential/test-net-bytes-per-incoming-chunk-overhead.js +++ b/test/sequential/test-net-bytes-per-incoming-chunk-overhead.js @@ -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`); });