PR-URL: https://github.com/nodejs/node/pull/61898 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
35 lines
1 KiB
Text
35 lines
1 KiB
Text
# Copyright 2025 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
[
|
|
[ALWAYS, {
|
|
# These are negative test cases that make sure that certain scenarios are
|
|
# reported as failures.
|
|
'fail/*': [FAIL],
|
|
}],
|
|
|
|
['variant == code_serializer', {
|
|
# Code serializer output is incompatible with some filecheck tests because the
|
|
# same test is executed twice (similar to message tests).
|
|
'deopt-too-much-feedback': [SKIP],
|
|
}], # variant == code_serializer
|
|
|
|
['not has_webassembly or variant == jitless', {
|
|
'wasm/*': [SKIP],
|
|
}], # not has_webassembly or variant == jitless
|
|
|
|
['variant in (jitless, nooptimization)', {
|
|
'js-wasm-wrapper-inlining-lazy-deopt': [SKIP],
|
|
}], # variant in (jitless, nooptimization)
|
|
|
|
['single_generation', {
|
|
# TODO(42204563): These tests rely on the shared heap which is incompatible
|
|
# with single generation.
|
|
'wasm/pause': [SKIP],
|
|
}], # single_generation
|
|
|
|
['official_build', {
|
|
'wasm/crash/failed-type-assertion': [SKIP],
|
|
}], # official_build
|
|
]
|