test: skip wasm-allocation tests for pointer compression builds · nodejs/node@8f09a1f

@@ -1628,6 +1628,9 @@ def get_asan_state(vm, context):

16281628

asan = Execute([vm, '-p', 'process.config.variables.asan'], context).stdout.strip()

16291629

return "on" if asan == "1" else "off"

163016301631+

def get_pointer_compression_state(vm, context):

1632+

pointer_compression = Execute([vm, '-p', 'process.config.variables.v8_enable_pointer_compression'], context).stdout.strip()

1633+

return "on" if pointer_compression == "1" else "off"

1631163416321635

def Main():

16331636

parser = BuildOptions()

@@ -1726,6 +1729,7 @@ def Main():

17261729

'arch': vmArch,

17271730

'type': get_env_type(vm, options.type, context),

17281731

'asan': get_asan_state(vm, context),

1732+

'pointer_compression': get_pointer_compression_state(vm, context),

17291733

}

17301734

test_list = root.ListTests([], path, context, arch, mode)

17311735

unclassified_tests += test_list