Skip to content

Commit 8aca934

Browse files
cjihrigtargos
authored andcommitted
test: update postmortem metadata test for V8 7.0
The V8 7.0 update requires the following adjustments to the postmortem debugging metadata constants: - v8dbg_class_SharedFunctionInfo__script__Object Use: v8dbg_class_SharedFunctionInfo__script_or_debug_info__Object - v8dbg_class_SharedFunctionInfo__function_identifier_or_debug_info__Object Use: v8dbg_class_UncompiledData__inferred_name__String and v8dbg_class_SharedFunctionInfo__name_or_scope_info__Object Refs: v8/v8@c941f11 PR-URL: #22754 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 0f73875 commit 8aca934

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/v8-updates/test-postmortem-metadata.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ function getExpectedSymbols() {
9696
'v8dbg_class_SharedFunctionInfo__function_data__Object',
9797
'v8dbg_class_SharedFunctionInfo__flags__int',
9898
'v8dbg_class_UncompiledData__end_position__int32_t',
99-
'v8dbg_class_SharedFunctionInfo__function_identifier_or_debug_info__Object',
99+
'v8dbg_class_UncompiledData__inferred_name__String',
100100
'v8dbg_class_SharedFunctionInfo__internal_formal_parameter_count__uint16_t',
101101
'v8dbg_class_SharedFunctionInfo__name_or_scope_info__Object',
102-
'v8dbg_class_SharedFunctionInfo__script__Object',
102+
'v8dbg_class_SharedFunctionInfo__script_or_debug_info__Object',
103103
'v8dbg_class_UncompiledData__start_position__int32_t',
104104
'v8dbg_class_SlicedString__offset__SMI',
105105
'v8dbg_class_SlicedString__parent__String',

0 commit comments

Comments
 (0)