Skip to content

Commit 379bf1a

Browse files
cjihrigtargos
authored andcommitted
test: update postmortem metadata test for V8 7.1
The V8 7.1 update requires the following adjustments to the postmortem debugging metadata constants: - v8dbg_class_JSArrayBuffer__byte_length__Object Use: v8dbg_class_JSArrayBuffer__byte_length__size_t - v8dbg_class_JSArrayBufferView__raw_byte_length__Object Use: v8dbg_class_JSArrayBufferView__byte_length__size_t - v8dbg_class_JSArrayBufferView__raw_byte_offset__Object Use: v8dbg_class_JSArrayBufferView__byte_offset__size_t - v8dbg_class_String__length__SMI Use: v8dbg_class_String__length__int32_t Refs: v8/v8@5cfe1a6 Refs: v8/v8@c7a0049 PR-URL: #23423 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Myles Borins <[email protected]>
1 parent 3d6d974 commit 379bf1a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ function getExpectedSymbols() {
6969
'v8dbg_class_HeapObject__map__Map',
7070
'v8dbg_class_JSArray__length__Object',
7171
'v8dbg_class_JSArrayBuffer__backing_store__Object',
72-
'v8dbg_class_JSArrayBuffer__byte_length__Object',
72+
'v8dbg_class_JSArrayBuffer__byte_length__size_t',
7373
'v8dbg_class_JSArrayBufferView__buffer__Object',
74-
'v8dbg_class_JSArrayBufferView__raw_byte_length__Object',
75-
'v8dbg_class_JSArrayBufferView__raw_byte_offset__Object',
74+
'v8dbg_class_JSArrayBufferView__byte_length__size_t',
75+
'v8dbg_class_JSArrayBufferView__byte_offset__size_t',
7676
'v8dbg_class_JSDate__value__Object',
7777
'v8dbg_class_JSFunction__context__Context',
7878
'v8dbg_class_JSFunction__shared__SharedFunctionInfo',
@@ -103,7 +103,7 @@ function getExpectedSymbols() {
103103
'v8dbg_class_UncompiledData__start_position__int32_t',
104104
'v8dbg_class_SlicedString__offset__SMI',
105105
'v8dbg_class_SlicedString__parent__String',
106-
'v8dbg_class_String__length__SMI',
106+
'v8dbg_class_String__length__int32_t',
107107
'v8dbg_class_ThinString__actual__String',
108108
'v8dbg_context_idx_scope_info',
109109
'v8dbg_context_idx_prev',

0 commit comments

Comments
 (0)