2017-08-01 11:36:44 -05:00
|
|
|
# Copyright 2016 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, {
|
2025-04-29 08:03:15 +02:00
|
|
|
'skip-stack-guard-page': [PASS, ['((arch == ppc64 or arch == s390x) and simulator_run)', SKIP]],
|
2021-08-29 14:20:49 +02:00
|
|
|
|
|
|
|
# Tests that need to run sequentially (e.g. due to memory consumption).
|
2025-04-29 08:03:15 +02:00
|
|
|
'simd/simd_f32x4*': [PASS, HEAVY],
|
|
|
|
'simd/simd_f64x2*': [PASS, HEAVY],
|
2021-08-29 14:20:49 +02:00
|
|
|
'f32*': [PASS, HEAVY],
|
|
|
|
'f64*': [PASS, HEAVY],
|
2023-10-05 08:46:07 +02:00
|
|
|
|
2024-08-14 20:41:00 +02:00
|
|
|
# The test is incorrect as it exports a function with an exnref in the
|
|
|
|
# signature, which is a runtime type error.
|
2025-04-29 08:03:15 +02:00
|
|
|
'ref_null': [FAIL],
|
|
|
|
|
|
|
|
# TODO(clemensb/evih): Resolve https://github.com/WebAssembly/memory64/pull/103#issuecomment-2548870034
|
|
|
|
'memory64': [FAIL],
|
|
|
|
'table': [FAIL],
|
2017-08-01 11:36:44 -05:00
|
|
|
}], # ALWAYS
|
|
|
|
|
2020-11-13 12:51:53 +01:00
|
|
|
['arch == arm and not simulator_run', {
|
|
|
|
# See https://crbug.com/v8/10938 denormals not handled correctly on ARM.
|
2025-04-29 08:03:15 +02:00
|
|
|
'simd/simd_f32x4': [PASS, FAIL],
|
|
|
|
'simd/simd_f32x4_arith': [PASS, FAIL],
|
|
|
|
'simd/simd_f32x4_cmp': [PASS, FAIL],
|
2020-11-13 12:51:53 +01:00
|
|
|
# This test only has 1 problematic use of f32x4.min and f32x4.div, consider
|
|
|
|
# removing it from upstream, then we can run this test.
|
2025-04-29 08:03:15 +02:00
|
|
|
'simd/simd_splat' : [PASS, FAIL],
|
|
|
|
'simd/simd_f32x4_pmin_pmax' : [PASS, FAIL],
|
2020-11-13 12:51:53 +01:00
|
|
|
}], # arch == arm and not simulator_run
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
['arch == mips64el or arch == mips64', {
|
2017-09-12 11:34:59 +02:00
|
|
|
# These tests fail because mips does not support the correct NaN bit patterns.
|
2019-09-24 11:56:38 -04:00
|
|
|
'float_misc': [SKIP],
|
|
|
|
'float_exprs': [SKIP],
|
|
|
|
'f32': [SKIP],
|
|
|
|
'f64': [SKIP],
|
2025-01-30 16:35:04 +01:00
|
|
|
|
|
|
|
# MIPS64 doesn't support JSPI yet.
|
|
|
|
'proposals/js-promise-integration/*': [SKIP],
|
2022-09-21 13:28:42 +02:00
|
|
|
}], # 'arch == mips64el or arch == mips64'
|
2017-09-12 11:34:59 +02:00
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
['(arch == mips64el or arch == mips64) and not simulator_run', {
|
2017-09-12 11:34:59 +02:00
|
|
|
# This test fail because mips does not support the correct NaN bit patterns.
|
|
|
|
# But it doesn't fail in simulator.
|
2019-09-24 11:56:38 -04:00
|
|
|
'conversions': [SKIP],
|
2022-09-21 13:28:42 +02:00
|
|
|
}], # '(arch == mips64el or arch == mips64) and not simulator_run'
|
2017-09-12 11:34:59 +02:00
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
['(arch == mips64el or arch == loong64) and simulator_run', {
|
2020-10-15 20:17:08 +02:00
|
|
|
# These tests need larger stack size on simulator.
|
|
|
|
'skip-stack-guard-page': '--sim-stack-size=8192',
|
2022-09-21 13:28:42 +02:00
|
|
|
}], # '(arch == mips64el or arch == loong64) and simulator_run'
|
2020-10-15 20:17:08 +02:00
|
|
|
|
2021-03-12 08:24:20 +01:00
|
|
|
['arch == riscv64', {
|
|
|
|
# These tests need larger stack size on simulator.
|
|
|
|
'skip-stack-guard-page': '--sim-stack-size=8192',
|
2022-09-21 13:28:42 +02:00
|
|
|
}], # 'arch == riscv64'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
['arch == riscv32', {
|
|
|
|
# These tests need larger stack size on simulator.
|
|
|
|
'skip-stack-guard-page': '--sim-stack-size=8192',
|
|
|
|
|
|
|
|
'func': ['variant == stress', SKIP],
|
|
|
|
}], # 'arch == riscv32'
|
2021-03-12 08:24:20 +01:00
|
|
|
|
2025-01-30 16:35:04 +01:00
|
|
|
['arch == ppc64', {
|
2017-08-01 11:36:44 -05:00
|
|
|
# These tests fail because ppc float min and max doesn't convert sNaN to qNaN.
|
2019-09-24 11:56:38 -04:00
|
|
|
'f32': [SKIP],
|
|
|
|
'f64': [SKIP],
|
2017-08-01 11:36:44 -05:00
|
|
|
# This test fails because ppc float to double doesn't convert sNaN to qNaN.
|
2019-09-24 11:56:38 -04:00
|
|
|
'conversions': [SKIP],
|
2025-01-30 16:35:04 +01:00
|
|
|
}], # 'arch == ppc64'
|
2017-08-01 11:36:44 -05:00
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
['arch == s390x', {
|
|
|
|
# These tests fail because s390x float min and max doesn't convert sNaN to qNaN.
|
2019-09-24 11:56:38 -04:00
|
|
|
'f32': [SKIP],
|
|
|
|
'f64': [SKIP],
|
2025-04-29 08:03:15 +02:00
|
|
|
}], # 'arch == s390x'
|
2017-08-01 11:36:44 -05: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
|
|
|
|
2023-10-05 08:46:07 +02:00
|
|
|
##############################################################################
|
2020-07-13 10:39:42 +02:00
|
|
|
['variant == stress_snapshot', {
|
|
|
|
'*': [SKIP], # only relevant for mjsunit tests.
|
2022-09-21 13:28:42 +02:00
|
|
|
}], # variant == stress_snapshot
|
2019-03-12 09:01:49 +01:00
|
|
|
|
2021-03-12 08:24:20 +01:00
|
|
|
##############################################################################
|
2021-07-14 11:30:07 +02:00
|
|
|
['no_simd_hardware == True', {
|
2023-03-30 12:11:08 +02:00
|
|
|
'linking': [SKIP],
|
2025-01-30 16:35:04 +01:00
|
|
|
|
2025-04-29 08:03:15 +02:00
|
|
|
'relaxed-simd*': [SKIP],
|
2025-01-30 16:35:04 +01:00
|
|
|
'simd*': [SKIP],
|
|
|
|
'proposals/exception-handling/simd*': [SKIP],
|
|
|
|
'proposals/extended-const/simd*': [SKIP],
|
|
|
|
'proposals/gc/simd*': [SKIP],
|
|
|
|
'proposals/js-promise-integration/simd*': [SKIP],
|
|
|
|
'proposals/js-types/simd*': [SKIP],
|
2025-04-29 08:03:15 +02:00
|
|
|
'proposals/memory64/relaxed-simd*': [SKIP],
|
2025-01-30 16:35:04 +01:00
|
|
|
'proposals/memory64/simd*': [SKIP],
|
|
|
|
'proposals/multi-memory/simd*': [SKIP],
|
|
|
|
'proposals/tail-call/simd*': [SKIP],
|
2021-07-14 11:30:07 +02:00
|
|
|
}], # no_simd_hardware == True
|
2021-03-12 08:24:20 +01:00
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
##############################################################################
|
|
|
|
['variant == stress', {
|
|
|
|
# Spec tests are executing long enough even without stress mode.
|
|
|
|
# As stress mode is unlikely to flush out bugs, skip the tests there.
|
|
|
|
'*': [SKIP],
|
|
|
|
}], # variant == stress
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Skip tests that require a large amount of virtual address space (inside the
|
|
|
|
# sandbox if that is enabled) if tsan is enabled.
|
|
|
|
['tsan == True', {
|
|
|
|
'memory_copy': [SKIP],
|
|
|
|
}], # tsan == True
|
|
|
|
|
2017-08-01 11:36:44 -05:00
|
|
|
]
|