2018-10-17 19:00:16 +00: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-05-05 07:52:48 +00:00
|
|
|
|
2019-01-03 15:55:05 +00:00
|
|
|
[ALWAYS, {
|
2021-09-14 15:56:31 +00:00
|
|
|
# This test can only be executed in the browser
|
|
|
|
'wpt/idlharness': [SKIP],
|
|
|
|
# Failing WPT tests
|
2022-01-18 13:24:54 +00:00
|
|
|
'wpt/exception/getArg.tentative': [FAIL],
|
2021-09-14 15:56:31 +00:00
|
|
|
'wpt/exception/toString.tentative': [FAIL],
|
2021-09-16 11:20:17 +00:00
|
|
|
'wpt/exception/type.tentative': [FAIL],
|
|
|
|
'wpt/function/constructor.tentative': [FAIL],
|
2021-09-14 15:56:31 +00:00
|
|
|
'wpt/function/table.tentative': [FAIL],
|
|
|
|
'wpt/function/type.tentative': [FAIL],
|
2021-11-24 13:02:50 +00:00
|
|
|
'wpt/global/type.tentative': [FAIL],
|
|
|
|
'wpt/table/type.tentative': [FAIL],
|
2021-11-26 17:11:52 +00:00
|
|
|
|
2021-09-16 11:59:17 +00:00
|
|
|
# Outdated proposal tests.
|
|
|
|
'proposals/js-types/table/get-set': [FAIL],
|
|
|
|
'proposals/memory64/table/get-set': [FAIL],
|
|
|
|
'proposals/simd/table/get-set': [FAIL],
|
|
|
|
'proposals/tail-call/table/get-set': [FAIL],
|
2021-09-21 16:27:51 +00:00
|
|
|
'proposals/js-types/memory/constructor': [FAIL],
|
|
|
|
'proposals/memory64/memory/constructor': [FAIL],
|
|
|
|
'proposals/simd/memory/constructor': [FAIL],
|
|
|
|
'proposals/tail-call/memory/constructor': [FAIL],
|
2022-04-26 11:09:02 +00:00
|
|
|
'proposals/js-types/interface': [FAIL],
|
|
|
|
'proposals/memory64/interface': [FAIL],
|
|
|
|
'proposals/simd/interface': [FAIL],
|
|
|
|
'proposals/tail-call/interface': [FAIL],
|
2021-09-14 15:56:31 +00:00
|
|
|
|
2020-05-25 06:06:14 +00:00
|
|
|
# TODO(v8:10556): Remove sub-typing in the reference-types implementation
|
|
|
|
'proposals/js-types/constructor/instantiate': [FAIL],
|
2020-06-16 07:00:12 +00:00
|
|
|
'proposals/js-types/global/value-get-set': [FAIL],
|
2020-05-25 06:06:14 +00:00
|
|
|
'proposals/js-types/instance/constructor': [FAIL],
|
2020-06-16 12:09:16 +00:00
|
|
|
|
2020-02-21 17:00:27 +00:00
|
|
|
# These are slow, and not useful to run for the proposals:
|
2020-02-18 14:32:12 +00:00
|
|
|
'proposals/js-types/limits': [SKIP],
|
2021-03-12 11:59:13 +00:00
|
|
|
'proposals/simd/limits': [SKIP],
|
|
|
|
'proposals/memory64/limits': [SKIP],
|
2019-01-03 15:55:05 +00:00
|
|
|
}], # ALWAYS
|
|
|
|
|
2018-11-30 16:38:43 +00:00
|
|
|
['arch == s390 or arch == s390x or system == aix', {
|
|
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=8402
|
|
|
|
'instance/constructor': [SKIP],
|
2019-01-24 15:55:42 +00:00
|
|
|
'constructor/instantiate': [SKIP],
|
2018-11-30 16:38:43 +00:00
|
|
|
}], # 'arch == s390 or arch == s390x or system == aix'
|
|
|
|
|
2020-09-02 10:03:42 +00:00
|
|
|
['mode == debug or simulator_run or variant != default or arch == arm or tsan or msan or asan', {
|
2020-02-21 17:00:27 +00:00
|
|
|
# Slow, and we always have the same limits anyway.
|
2020-02-27 10:57:44 +00:00
|
|
|
# ODroid bots don't have enough memory to run the test.
|
2020-02-21 17:00:27 +00:00
|
|
|
'limits': [SKIP],
|
2020-09-02 10:03:42 +00:00
|
|
|
}], # mode == debug or simulator_run or variant != default or arch == arm or tsan or msan or asan
|
2020-02-21 17:00:27 +00:00
|
|
|
|
2019-01-10 10:04:51 +00:00
|
|
|
##############################################################################
|
2021-02-22 09:37:09 +00:00
|
|
|
# TODO(v8:7777): Change this once wasm is supported in jitless mode.
|
|
|
|
['not has_webassembly or variant == jitless', {
|
2019-01-10 10:04:51 +00:00
|
|
|
'*': [SKIP],
|
2021-02-22 09:37:09 +00:00
|
|
|
}], # not has_webassembly or variant == jitless
|
2019-01-10 10:04:51 +00:00
|
|
|
|
2020-05-05 07:52:48 +00:00
|
|
|
################################################################################
|
|
|
|
['variant == stress_snapshot', {
|
|
|
|
'*': [SKIP], # only relevant for mjsunit tests.
|
|
|
|
}],
|
|
|
|
|
2018-10-17 19:00:16 +00:00
|
|
|
]
|