2016-10-21 06:37:29 +00: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.
|
|
|
|
|
|
|
|
[
|
2016-11-07 12:24:40 +00:00
|
|
|
[ALWAYS, {
|
2016-12-14 07:20:13 +00:00
|
|
|
# All tests in the bug directory are expected to fail.
|
|
|
|
'bugs/*': [FAIL],
|
|
|
|
|
2016-11-07 12:24:40 +00:00
|
|
|
# Issue 3660: Replacing activated TurboFan frames by unoptimized code does
|
|
|
|
# not work, but we expect it to not crash.
|
|
|
|
'debug/debug-step-turbofan': [PASS, FAIL],
|
2016-11-21 09:28:49 +00:00
|
|
|
|
|
|
|
# Issue 3641: The new 'then' semantics suppress some exceptions.
|
|
|
|
# These tests may be changed or removed when 'chain' is deprecated.
|
|
|
|
'debug/es6/debug-promises/reject-with-throw-in-reject': [FAIL],
|
|
|
|
'debug/es6/debug-promises/reject-with-undefined-reject': [FAIL],
|
|
|
|
'debug/es6/debug-promises/reject-with-invalid-reject': [FAIL],
|
|
|
|
|
|
|
|
# Issue 5651: Context mismatch in ScopeIterator::Type() for eval default
|
2018-07-24 08:59:42 +00:00
|
|
|
# parameter value (the test causes indexing a FixedArray out of bounds ->
|
|
|
|
# CRASH is also a reasonable outcome).
|
|
|
|
'debug/es6/debug-scope-default-param-with-eval': [FAIL, CRASH],
|
2016-12-14 07:20:13 +00:00
|
|
|
|
2016-12-19 14:07:55 +00:00
|
|
|
# Too slow in debug mode and on slow platforms.
|
2021-05-21 12:08:41 +00:00
|
|
|
'regress/regress-2318': [PASS, HEAVY, ['mode == debug or (arch != ia32 and arch != x64) or asan == True or msan == True', SKIP]],
|
2017-07-14 17:50:09 +00:00
|
|
|
|
|
|
|
# forcing weak callback in asan build change break order
|
|
|
|
'debug/debug-stepin-builtin-callback': [['asan == True or msan == True', SKIP]],
|
2021-05-21 12:08:41 +00:00
|
|
|
|
|
|
|
# Tests that need to run sequentially (e.g. due to memory consumption).
|
|
|
|
'debug/debug-scopes': [PASS, HEAVY],
|
|
|
|
'debug/debug-stepout-scope-part*': [PASS, HEAVY],
|
|
|
|
'debug/ignition/debug-step-prefix-bytecodes': [PASS, HEAVY, ['mode == debug', SKIP]],
|
2016-11-07 12:24:40 +00:00
|
|
|
}], # ALWAYS
|
|
|
|
|
2016-11-23 09:30:11 +00:00
|
|
|
##############################################################################
|
2017-06-07 11:28:54 +00:00
|
|
|
['variant == stress', {
|
2017-02-08 12:50:00 +00:00
|
|
|
# Very slow in stress mode.
|
|
|
|
'regress/regress-2318': [SKIP],
|
2020-04-08 06:22:29 +00:00
|
|
|
|
|
|
|
# Currently fails because breakpoint information is inconsistent after
|
|
|
|
# disabling and re-enabling the debugger (https://crbug.com/v8/10403).
|
|
|
|
'debug/wasm/debug-step-into-wasm': [SKIP],
|
2017-06-07 11:28:54 +00:00
|
|
|
}], # variant == stress
|
2016-11-23 09:30:11 +00:00
|
|
|
|
2018-10-17 08:48:56 +00:00
|
|
|
##############################################################################
|
|
|
|
['variant == stress and (arch == arm or arch == arm64) and simulator_run', {
|
|
|
|
# Slow tests: https://crbug.com/v8/7783
|
|
|
|
'debug/debug-stepout-scope-part*': [SKIP],
|
|
|
|
}], # variant == stress and (arch == arm or arch == arm64) and simulator_run
|
|
|
|
|
2016-11-07 12:24:40 +00:00
|
|
|
##############################################################################
|
|
|
|
['gc_stress == True', {
|
|
|
|
# Skip tests not suitable for GC stress.
|
|
|
|
# Tests taking too long
|
2018-10-17 08:48:56 +00:00
|
|
|
'debug/debug-stepout-scope-part*': [SKIP],
|
2016-12-14 07:20:13 +00:00
|
|
|
|
|
|
|
# Async function tests taking too long
|
|
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=5411
|
2017-01-10 23:27:02 +00:00
|
|
|
'debug/es8/async-debug-caught-exception-cases0': [SKIP],
|
|
|
|
'debug/es8/async-debug-caught-exception-cases1': [SKIP],
|
|
|
|
'debug/es8/async-debug-caught-exception-cases2': [SKIP],
|
|
|
|
'debug/es8/async-debug-caught-exception-cases3': [SKIP],
|
|
|
|
'debug/es8/async-function-debug-scopes': [SKIP],
|
2018-09-06 13:10:50 +00:00
|
|
|
|
|
|
|
# https://crbug.com/v8/8141
|
|
|
|
'debug/debug-liveedit-1': [SKIP],
|
|
|
|
'debug/es6/debug-liveedit-new-target-3': [SKIP],
|
|
|
|
'debug/side-effect/debug-evaluate-no-side-effect-control': [SKIP],
|
2016-11-07 12:24:40 +00:00
|
|
|
}], # 'gc_stress == True'
|
2016-11-11 12:07:41 +00:00
|
|
|
|
2018-09-07 18:33:41 +00:00
|
|
|
##############################################################################
|
|
|
|
['gc_fuzzer', {
|
|
|
|
# Slow tests.
|
|
|
|
'regress/regress-2318': [SKIP],
|
|
|
|
}], # 'gc_fuzzer'
|
|
|
|
|
2018-09-07 08:54:52 +00:00
|
|
|
##############################################################################
|
|
|
|
['predictable == True', {
|
|
|
|
# https://crbug.com/v8/8147
|
2018-09-07 14:53:08 +00:00
|
|
|
'debug/debug-liveedit-*': [SKIP],
|
2018-09-07 08:54:52 +00:00
|
|
|
'debug/debug-set-variable-value': [SKIP],
|
2020-04-16 09:35:21 +00:00
|
|
|
|
|
|
|
# Rely on (blocking) concurrent compilation.
|
|
|
|
'debug/regress/regress-opt-after-debug-deopt': [SKIP],
|
|
|
|
'debug/regress/regress-prepare-break-while-recompile': [SKIP],
|
|
|
|
'regress/regress-7421': [SKIP],
|
2018-09-07 08:54:52 +00:00
|
|
|
}], # 'predictable == True'
|
|
|
|
|
2016-11-11 12:07:41 +00:00
|
|
|
##############################################################################
|
2018-05-07 23:38:47 +00:00
|
|
|
['variant == no_wasm_traps', {
|
2016-11-17 18:48:08 +00:00
|
|
|
'*': [SKIP],
|
2018-05-07 23:38:47 +00:00
|
|
|
}], # variant == no_wasm_traps
|
2016-11-17 18:48:08 +00:00
|
|
|
|
2017-04-28 07:35:07 +00:00
|
|
|
##############################################################################
|
|
|
|
['arch == arm and not simulator_run', {
|
|
|
|
# Too slow on chromebooks.
|
|
|
|
'debug/ignition/debug-step-prefix-bytecodes': [SKIP],
|
|
|
|
}], # 'arch == arm and not simulator_run'
|
|
|
|
|
2018-06-22 05:27:17 +00:00
|
|
|
##############################################################################
|
|
|
|
['arch == arm and mode == debug', {
|
|
|
|
# Tests taking too long
|
|
|
|
'debug/debug-stepout-scope-part1': [SKIP],
|
|
|
|
'debug/debug-stepout-scope-part2': [SKIP],
|
|
|
|
'debug/debug-stepout-scope-part3': [SKIP],
|
|
|
|
'debug/debug-stepout-scope-part4': [SKIP],
|
|
|
|
'debug/debug-stepout-scope-part5': [SKIP],
|
|
|
|
'debug/debug-stepout-scope-part6': [SKIP],
|
|
|
|
'debug/debug-stepout-scope-part7': [SKIP],
|
|
|
|
'debug/debug-stepout-scope-part8': [SKIP],
|
|
|
|
}], # 'arch == arm and mode == debug'
|
|
|
|
|
2021-01-14 16:27:57 +00:00
|
|
|
['mode != debug', {
|
|
|
|
# Test uses a flag only available in debug mode
|
|
|
|
'debug/wasm/debug-enabled-tier-down-wasm-unsupported-liftoff': [SKIP],
|
|
|
|
}],
|
2017-04-28 07:35:07 +00:00
|
|
|
##############################################################################
|
2016-11-17 08:43:17 +00:00
|
|
|
['arch == s390 or arch == s390x', {
|
|
|
|
|
|
|
|
# Stack manipulations in LiveEdit is not implemented for this arch.
|
|
|
|
'debug/debug-liveedit-check-stack': [SKIP],
|
|
|
|
}], # 'arch == s390 or arch == s390x'
|
2017-07-14 17:50:09 +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
|
|
|
'debug/wasm/*': [SKIP],
|
2019-02-04 09:29:36 +00:00
|
|
|
'regress/regress-crbug-840288': [SKIP],
|
2019-12-27 09:04:58 +00:00
|
|
|
'regress/regress-crbug-1032042': [SKIP],
|
2021-02-22 09:37:09 +00:00
|
|
|
}], # not has_webassembly or variant == jitless
|
2019-02-04 10:24:00 +00:00
|
|
|
|
2021-04-26 07:49:47 +00:00
|
|
|
##############################################################################
|
|
|
|
# Tests requiring Sparkplug.
|
2022-09-08 11:39:11 +00:00
|
|
|
['arch not in (x64, arm64, ia32, arm, mips64el, loong64)', {
|
2021-04-26 07:49:47 +00:00
|
|
|
'regress/regress-crbug-1199681': [SKIP],
|
2022-09-01 17:38:29 +00:00
|
|
|
'debug/regress/regress-crbug-1357554': [SKIP]
|
2021-04-26 07:49:47 +00:00
|
|
|
}],
|
|
|
|
|
2020-05-05 07:52:48 +00:00
|
|
|
################################################################################
|
|
|
|
['variant == stress_snapshot', {
|
|
|
|
'*': [SKIP], # only relevant for mjsunit tests.
|
|
|
|
}],
|
|
|
|
|
2021-04-26 01:34:03 +00:00
|
|
|
################################################################################
|
|
|
|
['third_party_heap', {
|
|
|
|
# Requires --concurrent_recompilation
|
|
|
|
'debug/regress/regress-opt-after-debug-deopt': [SKIP],
|
|
|
|
'debug/regress/regress-prepare-break-while-recompile': [SKIP],
|
|
|
|
'regress/regress-7421': [SKIP],
|
2021-04-29 00:09:28 +00:00
|
|
|
# Requires a second isolate
|
|
|
|
'debug/debug-step': [SKIP],
|
|
|
|
'debug/deserialize-script-id': [SKIP],
|
|
|
|
'regress/regress-crbug-507070': [SKIP],
|
2021-04-26 01:34:03 +00:00
|
|
|
}], # third_party_heap
|
|
|
|
|
2016-10-21 06:37:29 +00:00
|
|
|
]
|