a28947f7bb
Context: https://github.com/WebAssembly/exception-handling/pull/197 This change removes the wasm exception -> JS Error inheritance. R=jkummerow@chromium.org Bug: v8:8091 Change-Id: I479f16fe03d4d77d2ecd8409e96f9a3c063912b5 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3688401 Commit-Queue: Thibaud Michaud <thibaudm@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/main@{#80997}
79 lines
2.8 KiB
Plaintext
79 lines
2.8 KiB
Plaintext
# Copyright 2018 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, {
|
|
# This test can only be executed in the browser
|
|
'wpt/idlharness': [SKIP],
|
|
# Failing WPT tests
|
|
'wpt/exception/getArg.tentative': [FAIL],
|
|
'wpt/exception/type.tentative': [FAIL],
|
|
'wpt/function/constructor.tentative': [FAIL],
|
|
'wpt/function/table.tentative': [FAIL],
|
|
'wpt/function/type.tentative': [FAIL],
|
|
'wpt/global/type.tentative': [FAIL],
|
|
'wpt/table/type.tentative': [FAIL],
|
|
|
|
# TODO(v8:12864): Failing spec test after update
|
|
'wpt/global/constructor': [FAIL],
|
|
|
|
# Outdated proposal tests.
|
|
'proposals/js-types/table/get-set': [FAIL],
|
|
'proposals/memory64/table/get-set': [FAIL],
|
|
'proposals/tail-call/table/get-set': [FAIL],
|
|
'proposals/js-types/memory/constructor': [FAIL],
|
|
'proposals/memory64/memory/constructor': [FAIL],
|
|
'proposals/tail-call/memory/constructor': [FAIL],
|
|
'proposals/js-types/interface': [FAIL],
|
|
'proposals/memory64/interface': [FAIL],
|
|
'proposals/simd/interface': [FAIL],
|
|
'proposals/tail-call/interface': [FAIL],
|
|
|
|
# TODO(v8:10556): Remove sub-typing in the reference-types implementation
|
|
'proposals/js-types/constructor/instantiate': [FAIL],
|
|
'proposals/js-types/global/value-get-set': [FAIL],
|
|
'proposals/js-types/instance/constructor': [FAIL],
|
|
|
|
# These are slow, and not useful to run for the proposals:
|
|
'proposals/js-types/limits': [SKIP],
|
|
'proposals/memory64/limits': [SKIP],
|
|
}], # ALWAYS
|
|
|
|
['system == android', {
|
|
# Slow, and we always have the same limits anyway.
|
|
# Android bots don't have enough memory to run the test.
|
|
'limits': [SKIP],
|
|
}], # 'system == android'
|
|
|
|
['arch == s390 or arch == s390x or system == aix', {
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=8402
|
|
'instance/constructor': [SKIP],
|
|
'constructor/instantiate': [SKIP],
|
|
}], # 'arch == s390 or arch == s390x or system == aix'
|
|
|
|
['arch == ppc64', {
|
|
# Test needs larger than supported single code space.
|
|
'limits': [SKIP],
|
|
}], # 'arch == ppc64'
|
|
|
|
['mode == debug or simulator_run or variant != default or arch == arm or tsan or msan or asan', {
|
|
# Slow, and we always have the same limits anyway.
|
|
# ODroid bots don't have enough memory to run the test.
|
|
'limits': [SKIP],
|
|
}], # mode == debug or simulator_run or variant != default or arch == arm or tsan or msan or asan
|
|
|
|
##############################################################################
|
|
# TODO(v8:7777): Change this once wasm is supported in jitless mode.
|
|
['not has_webassembly or variant == jitless', {
|
|
'*': [SKIP],
|
|
}], # not has_webassembly or variant == jitless
|
|
|
|
################################################################################
|
|
['variant == stress_snapshot', {
|
|
'*': [SKIP], # only relevant for mjsunit tests.
|
|
}],
|
|
|
|
]
|