Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: update postmortem metadata test #34

Closed
wants to merge 9 commits into from

Commits on Dec 19, 2017

  1. Configuration menu
    Copy the full SHA
    579cc0f View commit details
    Browse the repository at this point in the history
  2. deps: update V8 to 6.5.75

    nodejs-ci committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    6f21690 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1d45f1 View commit details
    Browse the repository at this point in the history
  4. src: update NODE_MODULE_VERSION to 62

    Major V8 updates are usually API/ABI incompatible with previous
    versions. This commit adapts NODE_MODULE_VERSION for V8 6.5.
    
    Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md
    nodejs-ci committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    61de1e7 View commit details
    Browse the repository at this point in the history
  5. build: compile with -std=gnu++1y

    It is necessary to enable more C++ features in order to build V8 6.4.
    targos authored and nodejs-ci committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    2863a00 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c55a17f View commit details
    Browse the repository at this point in the history
  7. test: fix message test after V8 upgrade

    targos authored and nodejs-ci committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    783464d View commit details
    Browse the repository at this point in the history
  8. src: update postmortem constant name

    This commit renames V8DBG_CLASS_MAP__INSTANCE_ATTRIBUTES__INT
    to V8DBG_CLASS_MAP__INSTANCE_TYPE__UINT16_T following upstream changes.
    cjihrig authored and nodejs-ci committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    77a0f71 View commit details
    Browse the repository at this point in the history
  9. test: update postmortem metadata test

    This commit updates the following postmortem metadata constants:
    
    - v8dbg_class_Map__inobject_properties_or_constructor_function_index__int
      - This is now
        v8dbg_class_Map__inobject_properties_start_or_constructor_function_index__char
        as of
        v8/v8@61bf2cc
    - v8dbg_class_Map__instance_attributes__int
      - This is now v8dbg_class_Map__instance_type__uint16_t as of
        v8/v8@c00bb6d
        and
        v8/v8@cb46310
    - v8dbg_class_Map__instance_size__int
      - This is now v8dbg_class_Map__instance_size_in_words__char as of
        v8/v8@61bf2cc
    - v8dbg_bit_field3_dictionary_map_shift
      - This is now v8dbg_bit_field3_is_dictionary_map_shift as of
        v8/v8@7a159da
    cjihrig committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    c33953d View commit details
    Browse the repository at this point in the history