b32ee40de8
This CL adds support for: * conditional breaks in setBreakpoint, * locals in frame.local{Count,Name,Value}, * evaluation on a frame in frame.evaluate, * and more detailed scope information in scopeObject. Uses of several functions that are not covered by the inspector protocol and are only used in tests have been removed. Local handling has been modified to also include arguments as locals. Inspector differs in this regard from our FrameDetails in that arguments are always shown as locals. Argument-related functions were removed. BUG=v8:5530 Review-Url: https://codereview.chromium.org/2491543002 Cr-Commit-Position: refs/heads/master@{#40917}
45 lines
1.7 KiB
Plaintext
45 lines
1.7 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, {
|
|
# 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],
|
|
}], # ALWAYS
|
|
|
|
##############################################################################
|
|
['gc_stress == True', {
|
|
# Skip tests not suitable for GC stress.
|
|
# 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],
|
|
}], # 'gc_stress == True'
|
|
|
|
##############################################################################
|
|
['variant == turbofan_opt', {
|
|
# TODO(mstarzinger): Debugger cannot materialize de-materialized functions.
|
|
'debug/regress/regress-crbug-323936': [FAIL],
|
|
|
|
# TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan.
|
|
'debug/debug-evaluate-closure': [FAIL],
|
|
}], # variant == turbofan_opt
|
|
|
|
##############################################################################
|
|
['gc_stress == True', {
|
|
# Async function tests taking too long
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=5411
|
|
'debug/harmony/async-debug-caught-exception-cases0': [SKIP],
|
|
'debug/harmony/async-debug-caught-exception-cases1': [SKIP],
|
|
'debug/harmony/async-debug-caught-exception-cases2': [SKIP],
|
|
'debug/harmony/async-debug-caught-exception-cases3': [SKIP],
|
|
}], # 'gc_stress == True'
|
|
]
|