1ca0de67d2
Don't allocate feedback vectors and feedback metadata in lite mode. Also updates to skip tests that require feedback vectors. This is a reland of https://chromium-review.googlesource.com/c/v8/v8/+/1384087 after skipping the failing tests. Bug: v8:8394 Change-Id: I7766533b85a144e62996ceed8d542cdc534feeb5 Reviewed-on: https://chromium-review.googlesource.com/c/1384307 Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Reviewed-by: Ross McIlroy <rmcilroy@chromium.org> Commit-Queue: Mythri Alle <mythria@chromium.org> Cr-Commit-Position: refs/heads/master@{#58363}
71 lines
2.6 KiB
Plaintext
71 lines
2.6 KiB
Plaintext
# 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, {
|
|
# https://crbug.com/v8/7767
|
|
'debugger/wasm-imports': [SKIP],
|
|
# https://crbug.com/v8/7932
|
|
'runtime/command-line-api-without-side-effects': [SKIP],
|
|
|
|
# Require optimization, so can't be run on Lite mode.
|
|
'cpu-profiler/coverage-block': [PASS, ['lite_mode == True', SKIP]],
|
|
'cpu-profiler/coverage': [PASS, ['lite_mode == True', SKIP]],
|
|
|
|
# Bad OOM timing on noembed builds (https://crbug.com/v8/8494).
|
|
'debugger/pause-on-oom': [PASS, ['embedded_builtins == False', SKIP]],
|
|
}], # ALWAYS
|
|
|
|
##############################################################################
|
|
['system == android', {
|
|
# https://crbug.com/v8/8197
|
|
'debugger/get-possible-breakpoints-class-fields': [SKIP],
|
|
}], # 'system == android'
|
|
|
|
##############################################################################
|
|
['variant != default', {
|
|
# Issue 6167.
|
|
'debugger/eval-scopes': [PASS, FAIL],
|
|
'debugger/scope-skip-variables-with-empty-name': [PASS, FAIL],
|
|
'debugger/update-call-frame-scopes': [PASS, FAIL],
|
|
'debugger/side-effect-free-debug-evaluate': [PASS, FAIL],
|
|
'debugger/evaluate-on-call-frame-in-module': [PASS, FAIL],
|
|
}], # variant != default
|
|
|
|
['lite_mode == True', {
|
|
# Lite mode does not allocate feedback vector.
|
|
'type-profiler/type-profile-start-stop': [SKIP],
|
|
'type-profiler/type-profile': [SKIP],
|
|
'type-profiler/type-profile-with-to-string-tag': [SKIP],
|
|
'type-profiler/type-profile-with-classes': [SKIP],
|
|
'type-profiler/type-profile-disable': [SKIP]
|
|
}], # 'lite_mode == True'
|
|
|
|
|
|
##############################################################################
|
|
['(arch == arm or arch == arm64) and simulator_run', {
|
|
# Slow tests: https://crbug.com/v8/7783
|
|
'runtime/console-messages-limits': [PASS, NO_VARIANTS, ['mode == debug', SKIP]],
|
|
}], # (arch == arm or arch == arm64) and simulator_run
|
|
|
|
##############################################################################
|
|
['variant == no_wasm_traps', {
|
|
'*': [SKIP],
|
|
}], # variant == no_wasm_traps
|
|
|
|
##############################################################################
|
|
['arch == s390 or arch == s390x', {
|
|
# Stack manipulations in LiveEdit is not implemented for this arch.
|
|
'debugger/set-script-source-stack-padding': [SKIP],
|
|
}], # 'arch == s390 or arch == s390x'
|
|
|
|
##############################################################################
|
|
['no_snap == True', {
|
|
# https://crbug.com/v8/8521
|
|
'debugger/pause-on-oom': [SKIP],
|
|
}],
|
|
|
|
]
|