From fb48d439b8500100a372ca4a60c13a239989a18f Mon Sep 17 00:00:00 2001 From: cjihrig Date: Tue, 19 Dec 2017 10:53:08 -0500 Subject: [PATCH] test: update postmortem metadata test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the following postmortem metadata constant: - v8dbg_bit_field3_dictionary_map_shift - This is now v8dbg_bit_field3_is_dictionary_map_shift as of https://github.com/v8/v8/commit/7a159da151e5f5437d6924de4fd142f854d3df4e Refs: https://github.com/nodejs/node-v8/pull/34 Reviewed-By: Ben Noordhuis Reviewed-By: Joyee Cheung Reviewed-By: Michaƫl Zasso --- test/parallel/test-postmortem-metadata.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-postmortem-metadata.js b/test/parallel/test-postmortem-metadata.js index 0c06108c58b..63e807f331f 100644 --- a/test/parallel/test-postmortem-metadata.js +++ b/test/parallel/test-postmortem-metadata.js @@ -41,7 +41,7 @@ function getExpectedSymbols() { // should only consist of postmortem constants, and some of them can be // relatively long. /* eslint-disable max-len */ - 'v8dbg_bit_field3_dictionary_map_shift', + 'v8dbg_bit_field3_is_dictionary_map_shift', 'v8dbg_bit_field3_number_of_own_descriptors_shift', 'v8dbg_class_Code__instruction_size__int', 'v8dbg_class_Code__instruction_start__uintptr_t',