summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2019-10-23 14:58:33 +0200
committerMichaël Zasso <targos@protonmail.com>2019-11-08 15:53:36 +0100
commit2707efd27b5ce5f9b9a6873438769394ef1c6431 (patch)
tree84403e459e0397e9610d20e239f18c04e39dbaaa
parent0aec0b2eae3767ea4c34430f68d9701eefdc83e8 (diff)
downloadandroid-node-v8-2707efd27b5ce5f9b9a6873438769394ef1c6431.tar.gz
android-node-v8-2707efd27b5ce5f9b9a6873438769394ef1c6431.tar.bz2
android-node-v8-2707efd27b5ce5f9b9a6873438769394ef1c6431.zip
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>
-rw-r--r--test/sequential/test-net-bytes-per-incoming-chunk-overhead.js2
1 files changed, 1 insertions, 1 deletions
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 c2275b570c..46c1f6d1a5 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`);
});