192bee6bac
This reverts commit 34686abe40
.
Reason for revert: Compile errors on several bots, e.g. https://ci.chromium.org/p/v8/builders/luci.v8.ci/V8%20Linux%20-%20debug%20builder/33299
Original change's description:
> inspector: move injected script source to native
>
> - introduced ValueMirror interface, this interface contains methods to generate
> different protocol entities,
> - introduced DebugPropertyIterator, this iterator iterates through object properties
> in the following order: exotic indices, enumerable strings, all other properties,
> - removed all injected script infra, e.g. closure compiler,
>
> R=dgozman@chromium.org
> TBR=yangguo@chromium.org
>
> Bug: chromium:595206
> Cq-Include-Trybots: luci.chromium.try:linux_chromium_headless_rel;luci.chromium.try:linux_chromium_rel_ng;master.tryserver.blink:linux_trusty_blink_rel
> Change-Id: I077c1879622aa0d9900d719b80d2ef5ba4221a22
> Reviewed-on: https://chromium-review.googlesource.com/c/1295550
> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
> Reviewed-by: Dmitry Gozman <dgozman@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#57142}
TBR=dgozman@chromium.org,yangguo@chromium.org,kozyatinskiy@chromium.org
Change-Id: I6e4ccaf1d6b151fbc0ffe4f26daa584433321c77
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: chromium:595206
Cq-Include-Trybots: luci.chromium.try:linux_chromium_headless_rel;luci.chromium.try:linux_chromium_rel_ng;master.tryserver.blink:linux_trusty_blink_rel
Reviewed-on: https://chromium-review.googlesource.com/c/1307432
Reviewed-by: Clemens Hammacher <clemensh@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#57144}
59 lines
2.4 KiB
Plaintext
59 lines
2.4 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]],
|
|
}], # ALWAYS
|
|
|
|
##############################################################################
|
|
['system == android', {
|
|
# https://crbug.com/v8/8160
|
|
'debugger/stepping-with-exposed-injected-script': [FAIL],
|
|
# 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
|
|
|
|
##############################################################################
|
|
['variant == stress and (arch == arm or arch == arm64) and simulator_run', {
|
|
# Slow tests: https://crbug.com/v8/7783
|
|
'runtime/console-messages-limits': [SKIP],
|
|
}], # variant == stress and (arch == arm or arch == arm64) and simulator_run
|
|
|
|
##############################################################################
|
|
['variant == nooptimization and (arch == arm or arch == arm64) and simulator_run', {
|
|
# Slow tests: https://crbug.com/v8/7783
|
|
'runtime/console-messages-limits': [SKIP],
|
|
}], # variant == nooptimization and (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'
|
|
]
|