Commit 3c739109 authored by yangguo's avatar yangguo Committed by Commit bot

[debugger] fix mjsunit/regress/regress-crbug-119800 for ignition.

R=vogelheim@chromium.org
BUG=v8:4690
LOG=N

Review URL: https://codereview.chromium.org/1907293002

Cr-Commit-Position: refs/heads/master@{#35758}
parent 3fc0224c
......@@ -751,9 +751,6 @@
##############################################################################
['ignition == True', {
# TODO(yangguo,4690): assertion failures in debugger tests.
'regress/regress-crbug-119800': [FAIL],
# TODO(yangguo,4690): flaky failures on the bots.
'debug-stepin-builtin-callback-opt': [SKIP],
......
......@@ -5,9 +5,9 @@
// Flags: --expose-debug-as debug
function f() {
1;
2;
3;
print(1);
print(2);
print(3);
}
var Debug = debug.Debug;
......@@ -34,4 +34,5 @@ Debug.setListener(null);
Debug.debuggerFlags().breakPointsActive.setValue(true);
assertNull(exception);
assertEquals(breaks, ["1;", "2;", "3;", "}", "Debug.setListener(null);"]);
assertEquals(breaks, ["print(1);", "print(2);", "print(3);", "}",
"Debug.setListener(null);"]);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment