2019-03-12 09:01:49 +01:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
[
|
2020-07-13 10:39:42 +02:00
|
|
|
|
2019-03-12 09:01:49 +01:00
|
|
|
[ALWAYS, {
|
2021-11-21 15:58:15 +01:00
|
|
|
# This test can only be executed in the browser
|
|
|
|
'wpt/idlharness': [SKIP],
|
|
|
|
# Failing WPT tests
|
|
|
|
'wpt/function/constructor.tentative': [FAIL],
|
2025-01-30 16:35:04 +01:00
|
|
|
|
2023-03-30 12:11:08 +02:00
|
|
|
# TODO(v8): Should work after
|
|
|
|
# https://github.com/WebAssembly/exception-handling/pull/257 landed and the
|
|
|
|
# tests have been updated.
|
|
|
|
'wpt/exception/getArg.tentative': [FAIL],
|
2022-01-29 08:33:07 +01:00
|
|
|
|
2024-03-30 09:54:35 +01:00
|
|
|
# This is a spec test of the https://github.com/WebAssembly/esm-integration
|
|
|
|
# proposal which V8 does not implement yet.
|
|
|
|
'wpt/module/moduleSource.tentative': [FAIL],
|
|
|
|
|
|
|
|
# Tests that need to run sequentially (e.g. due to memory consumption).
|
|
|
|
# TODO(14258): Switch back to [PASS, HEAVY] once wasm-js tests allow more
|
2023-10-05 08:46:07 +02:00
|
|
|
# than one memory. Github issue:
|
|
|
|
# https://github.com/WebAssembly/multi-memory/issues/49
|
2024-03-30 09:54:35 +01:00
|
|
|
'limits': [FAIL, HEAVY],
|
2024-08-14 20:41:00 +02:00
|
|
|
|
|
|
|
# TODO(thibaudm): Test failing after the type-reflection change around
|
|
|
|
# WebAssembly.Function.type. The tests should be updated anyway since they
|
|
|
|
# still use the old API (which works but is deprecated).
|
|
|
|
'proposals/js-promise-integration/js-promise-integration/js-promise-integration': [FAIL],
|
2025-01-30 16:35:04 +01:00
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
# TODO(https://crbug.com/42202693): RAB / GSAB integration.
|
|
|
|
'wpt/memory/to-fixed-length-buffer': [FAIL],
|
|
|
|
'wpt/memory/to-resizable-buffer': [FAIL],
|
|
|
|
|
|
|
|
# TODO(402340845): This requires the type reflection proposal to be staged or enabled by default.
|
|
|
|
'wpt/function/call.tentative': [FAIL],
|
|
|
|
'wpt/function/table.tentative': [FAIL],
|
|
|
|
'wpt/function/type.tentative': [FAIL],
|
|
|
|
'wpt/global/type.tentative': [FAIL],
|
|
|
|
'wpt/memory/constructor-types.tentative': [FAIL],
|
|
|
|
'wpt/memory/type.tentative': [FAIL],
|
|
|
|
'wpt/table/constructor-types.tentative': [FAIL],
|
|
|
|
'wpt/table/type.tentative': [FAIL],
|
|
|
|
'wpt/tag/type.tentative': [FAIL],
|
2022-09-21 13:28:42 +02:00
|
|
|
}], # ALWAYS
|
2021-06-08 14:04:59 +02:00
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
['system == android', {
|
|
|
|
# Slow, and we always have the same limits anyway.
|
|
|
|
# Android bots don't have enough memory to run the test.
|
2021-06-08 14:04:59 +02:00
|
|
|
'limits': [SKIP],
|
2022-09-21 13:28:42 +02:00
|
|
|
}], # 'system == android'
|
2019-03-12 09:01:49 +01:00
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
['arch == s390x or system == aix', {
|
2019-03-12 09:01:49 +01:00
|
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=8402
|
|
|
|
'instance/constructor': [SKIP],
|
|
|
|
'constructor/instantiate': [SKIP],
|
2025-04-29 08:03:15 +02:00
|
|
|
}], # 'arch == s390x or system == aix'
|
2019-03-12 09:01:49 +01:00
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
['arch == ppc64', {
|
|
|
|
# Test needs larger than supported single code space.
|
|
|
|
'limits': [SKIP],
|
|
|
|
}], # 'arch == ppc64'
|
|
|
|
|
2020-11-13 12:51:53 +01:00
|
|
|
['mode == debug or simulator_run or variant != default or arch == arm or tsan or msan or asan', {
|
2020-05-05 09:19:02 +02:00
|
|
|
# Slow, and we always have the same limits anyway.
|
|
|
|
# ODroid bots don't have enough memory to run the test.
|
|
|
|
'limits': [SKIP],
|
2020-11-13 12:51:53 +01:00
|
|
|
}], # mode == debug or simulator_run or variant != default or arch == arm or tsan or msan or asan
|
2020-05-05 09:19:02 +02:00
|
|
|
|
2019-03-12 09:01:49 +01:00
|
|
|
##############################################################################
|
2021-03-12 08:24:20 +01:00
|
|
|
# TODO(v8:7777): Change this once wasm is supported in jitless mode.
|
|
|
|
['not has_webassembly or variant == jitless', {
|
2019-03-12 09:01:49 +01:00
|
|
|
'*': [SKIP],
|
2021-03-12 08:24:20 +01:00
|
|
|
}], # not has_webassembly or variant == jitless
|
2019-03-15 18:35:06 +05:30
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
##############################################################################
|
2020-07-13 10:39:42 +02:00
|
|
|
['variant == stress_snapshot', {
|
|
|
|
'*': [SKIP], # only relevant for mjsunit tests.
|
|
|
|
}],
|
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
##############################################################################
|
|
|
|
['arch != x64 and arch != arm64 and arch != ia32 and arch != arm and arch != riscv64 and arch != loong64 and arch != ppc64 and arch != s390x', {
|
|
|
|
# Stack switching is not supported on all platforms.
|
|
|
|
'proposals/js-promise-integration/js-promise-integration/js-promise-integration': [SKIP],
|
|
|
|
'wpt/jspi/*': [SKIP]
|
|
|
|
}], # (arch != x64 and arch != arm64 and arch != ia32 and arch != arm and arch != riscv64 and arch != loong64 and arch != ppc64 and arch != s390x)
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
['cet_shadow_stack', {
|
|
|
|
# It does not support multiple stacks yet.
|
|
|
|
'proposals/js-promise-integration/js-promise-integration/js-promise-integration': [SKIP],
|
|
|
|
'wpt/jspi/*': [SKIP]
|
|
|
|
}] # cet_shadow_stack
|
2019-03-12 09:01:49 +01:00
|
|
|
]
|