summaryrefslogtreecommitdiff
path: root/test/v8-updates
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-06-03 09:09:45 -0400
committerMichaël Zasso <targos@protonmail.com>2019-08-01 12:57:02 +0200
commitf53a2414474c2b1aee07ab367415b32c20e50bd9 (patch)
tree09cebeba64a507058b5469e98e1b6296e3f36e02 /test/v8-updates
parent94e980c9d380fb4b63b175c3dd8ddaa7928b5747 (diff)
downloadnode-new-f53a2414474c2b1aee07ab367415b32c20e50bd9.tar.gz
test: update postmortem metadata test for V8 7.6
The following metadata has changed: - v8dbg_class_FixedTypedArrayBase__base_pointer__Object - Field moved from FixedTypedArrayBase to JSTypedArray. - Postmortem tools should use v8dbg_class_JSTypedArray__base_pointer__Object. - Refs: https://github.com/v8/v8/commit/70bd7cf0ef618621c16ae3f5ba2db614ac8ef996 - v8dbg_class_FixedTypedArrayBase__external_pointer__uintptr_t - Field moved from FixedTypedArrayBase to JSTypedArray. - Add new constant: v8dbg_class_JSTypedArray__external_pointer__uintptr_t - Refs: https://github.com/v8/v8/commit/70bd7cf0ef618621c16ae3f5ba2db614ac8ef996 - v8dbg_class_Map__instance_descriptors_offset - Underlying constant was renamed to kInstanceDescriptorsOffset. - Postmortem tools should not need to update anything for this constant. - Refs: https://github.com/v8/v8/commit/15a7e04eec8b98c0430960a966a57d1b2ea4aa76 PR-URL: https://github.com/nodejs/node/pull/28016 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to 'test/v8-updates')
-rw-r--r--test/v8-updates/test-postmortem-metadata.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/v8-updates/test-postmortem-metadata.js b/test/v8-updates/test-postmortem-metadata.js
index 3dacc97388..790d0dbb5c 100644
--- a/test/v8-updates/test-postmortem-metadata.js
+++ b/test/v8-updates/test-postmortem-metadata.js
@@ -66,8 +66,8 @@ function getExpectedSymbols() {
'v8dbg_class_ConsString__second__String',
'v8dbg_class_FixedArray__data__uintptr_t',
'v8dbg_class_FixedArrayBase__length__SMI',
- 'v8dbg_class_FixedTypedArrayBase__base_pointer__Object',
- 'v8dbg_class_FixedTypedArrayBase__external_pointer__uintptr_t',
+ 'v8dbg_class_JSTypedArray__base_pointer__Object',
+ 'v8dbg_class_JSTypedArray__external_pointer__uintptr_t',
'v8dbg_class_HeapNumber__value__double',
'v8dbg_class_HeapObject__map__Map',
'v8dbg_class_JSArray__length__Object',