Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortheanarkh <2923878201@qq.com>2022-04-23 18:35:36 +0300
committerMichaƫl Zasso <targos@protonmail.com>2022-04-28 07:57:22 +0300
commita19fb609d8ef168c2b7606123d72f2bc331bdec1 (patch)
tree394c04afbac76b25ebf54ed7deaad382e45fb68d /test
parentb0f7c4c8f928597f2118dde73c98ac0fba8f01f9 (diff)
v8: export more fields in getHeapStatistics
export total_global_handles_size, used_global_handles_size, external_memory in getHeapStatistics PR-URL: https://github.com/nodejs/node/pull/42784 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-v8-stats.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/parallel/test-v8-stats.js b/test/parallel/test-v8-stats.js
index 2093343859f..7503a08c5a6 100644
--- a/test/parallel/test-v8-stats.js
+++ b/test/parallel/test-v8-stats.js
@@ -6,15 +6,18 @@ const v8 = require('v8');
const s = v8.getHeapStatistics();
const keys = [
'does_zap_garbage',
+ 'external_memory',
'heap_size_limit',
'malloced_memory',
'number_of_detached_contexts',
'number_of_native_contexts',
'peak_malloced_memory',
'total_available_size',
+ 'total_global_handles_size',
'total_heap_size',
'total_heap_size_executable',
'total_physical_size',
+ 'used_global_handles_size',
'used_heap_size'];
assert.deepStrictEqual(Object.keys(s).sort(), keys);
keys.forEach(function(key) {