node/deps/v8/test/message/message.status
Michaël Zasso 9d7cd9b864
deps: update V8 to 12.8.374.13
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
2024-08-16 16:03:01 +02:00

152 lines
6.1 KiB
Plaintext

# Copyright 2008 the V8 project authors. All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
[
[ALWAYS, {
# We don't parse RegExps at scanning time, so we can't fail on octal
# escapes (we need to parse to distinguish octal escapes from valid
# back-references).
'strict-octal-regexp': [SKIP],
# Modules which are only meant to be imported from by other tests, not to be
# tested standalone.
'fail/modules-skip*': [SKIP],
# Tests that need to run sequentially (e.g. due to memory consumption).
'fail/map-grow-failed': [PASS, HEAVY],
'fail/set-grow-failed': [PASS, HEAVY],
'wasm-trace-memory64*': [PASS, HEAVY],
}], # ALWAYS
# Skip Liftoff tests on platforms that don't support Liftoff.
['arch != x64 and arch != ia32 and arch != arm64 and arch != arm and arch != s390x and arch != ppc64', {
'wasm-trace-memory-liftoff': [SKIP],
'wasm-trace-memory64-liftoff': [SKIP],
'wasm-trace-liftoff': [SKIP],
}], # arch != x64 and arch != ia32 and arch != arm64 and arch != arm and arch != s390x
['variant == code_serializer', {
# Code serializer output is incompatible with all message tests
# because the same test is executed twice.
'*': [SKIP],
}], # variant == code_serializer
['not i18n', {
'fail/list-format*': [SKIP],
# Needs the StringPrototypeToLowerCaseIntl builtin.
'wasm-recognize-imports': [SKIP],
}], # not i18n
################################################################################
['mode == release', {
# Slow tests in release mode.
'fail/map-grow-failed': [PASS, SLOW],
'fail/set-grow-failed': [PASS, SLOW],
}],
##############################################################################
# TODO(v8:7777): Change this once wasm is supported in jitless mode.
['not has_webassembly or variant == jitless', {
'mjsunit/fail/assert-promise-result-wasm-compile-fail': [SKIP],
'mjsunit/fail/assert-in-promise-fail-recursive': [FAIL],
'fail/wasm-*': [SKIP],
'wasm-*': [SKIP],
'asm-*': [SKIP],
}], # not has_webassembly or variant == jitless
################################################################################
['variant == stress_snapshot', {
'*': [SKIP], # only relevant for mjsunit tests.
}],
################################################################################
['arch == mips64el or arch == riscv64 or arch == loong64', {
# Tests that require Simd enabled.
'wasm-trace-memory': [SKIP],
'wasm-trace-memory64': [SKIP],
}], # arch == mips64el or arch == riscv64 or arch == loong64
##############################################################################
['no_simd_hardware == True', {
'wasm-trace-memory': [SKIP],
'wasm-trace-memory-liftoff': [SKIP],
'wasm-trace-memory64': [SKIP],
'wasm-trace-memory64-liftoff': [SKIP],
}], # no_simd_hardware == True
################################################################################
['third_party_heap', {
# Performs GC
'weakref-finalizationregistry-error': [SKIP],
}], # third_party_heap
##############################################################################
['not (arch == x64 and mode == release)', {
# Only run these known slow tests on bots that we think to be reasonably
# fast.
'fail/map-grow-failed': [SKIP],
'fail/set-grow-failed': [SKIP],
}], # not (arch == x64 and mode == release)
##############################################################################
['arch == riscv32', {
'wasm-trace-turbofan':[SKIP],
}], # (arch == riscv32)
##############################################################################
# 32-bit platforms
['arch in (ia32, arm, riscv32)', {
# Needs >4GB of available contiguous memory.
'wasm-trace-memory64': [SKIP],
'wasm-trace-memory64-liftoff': [SKIP],
}], # 'arch in (ia32, arm, riscv32)'
##############################################################################
# Behavioural differences between Maglev and Turbofan when the former is used
# for OptimizeFunctionOnNextCall.
['variant in (stress_maglev, stress_maglev_future, stress_maglev_no_turbofan, maglev_no_turbofan)', {
# Maglev doesn't support inlining of Wasm code.
'wasm-inlining-into-js': [FAIL],
}], # variant in (stress_maglev, stress_maglev_future, stress_maglev_no_turbofan, maglev_no_turbofan)
##############################################################################
# On 32 bit platforms we have int64 lowering.
['(arch != x64 and arch != arm64) or no_simd_hardware', {
'wasm-trace-deopt-64': [SKIP],
}],
['(arch != ia32 and arch != arm) or no_simd_hardware', {
'wasm-trace-deopt-32': [SKIP],
}],
##############################################################################
['verify_predictable', {
# https://crbug.com/v8/14397
'wasm-finish-compilation': [PASS, FAIL],
}], # 'verify_predictable'
]