From c37374a5450d313dc933d676871306bb355b63db 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 c2275b570ca..46c1f6d1a58 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`); });