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, {
|
2020-05-25 06:06:14 +00:00
|
|
|
# TODO(v8:10556): Remove sub-typing in the reference-types implementation
|
|
|
|
'constructor/instantiate': [FAIL],
|
|
|
|
'instance/constructor': [FAIL],
|
|
|
|
'proposals/js-types/constructor/instantiate': [FAIL],
|
2020-06-16 07:00:12 +00:00
|
|
|
'proposals/js-types/global/constructor': [FAIL],
|
|
|
|
'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-05-25 06:06:14 +00:00
|
|
|
'prototypes': [FAIL],
|
|
|
|
|
2020-06-16 12:09:16 +00:00
|
|
|
# Outdated proposals, will work after rebasing.
|
|
|
|
'proposals/reference-types/global/value-get-set': [FAIL],
|
|
|
|
'proposals/reference-types/global/constructor': [FAIL],
|
|
|
|
'proposals/bulk-memory-operations/global/value-get-set': [FAIL],
|
|
|
|
'proposals/bulk-memory-operations/global/constructor': [FAIL],
|
|
|
|
|
2020-02-21 17:00:27 +00:00
|
|
|
# These are slow, and not useful to run for the proposals:
|
2019-08-27 14:14:34 +00:00
|
|
|
'proposals/reference-types/limits': [SKIP],
|
2020-02-18 14:32:12 +00:00
|
|
|
'proposals/bulk-memory-operations/limits': [SKIP],
|
|
|
|
'proposals/js-types/limits': [SKIP],
|
2020-04-22 14:08:54 +00:00
|
|
|
# TODO(wasm): Update memory limit.
|
|
|
|
'limits': [FAIL],
|
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
|
|
|
##############################################################################
|
2019-02-04 10:24:00 +00:00
|
|
|
['lite_mode or variant == jitless', {
|
2019-01-10 10:04:51 +00:00
|
|
|
# TODO(v8:7777): Re-enable once wasm is supported in jitless mode.
|
|
|
|
'*': [SKIP],
|
2019-02-04 10:24:00 +00:00
|
|
|
}], # lite_mode 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
|
|
|
]
|