Commit 84b448be authored by Yang Guo's avatar Yang Guo Committed by Commit Bot

[debug] add microtask-related tests.

I'd like to make sure changes to microtask handling do not break debugging.

R=jarin@chromium.org

Change-Id: I983bd3340261e472b22b0d5b6cded60b64b19d38
Reviewed-on: https://chromium-review.googlesource.com/691715Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
Commit-Queue: Yang Guo <yangguo@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48270}
parent ea3d7196
// Copyright 2017 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.
Debug = debug.Debug
var exception = null;
var log = [];
function listener(event, exec_state, event_data, data) {
try {
if (event == Debug.DebugEvent.Break) {
var line = exec_state.frame(0).sourceLineText();
log.push(line);
if (!/STOP/.test(line)) {
exec_state.prepareStep(Debug.StepAction.StepIn);
}
}
} catch (e) {
exception = e;
}
};
Debug.setListener(listener);
function f() {
print(1);
}
Promise.resolve().then(f).then(
function() {
return 2;
}
).then(
function() {
throw new Error();
}
).catch(
function() {
print(3);
} // STOP
);
setTimeout(function() {
Debug.setListener(null);
assertNull(exception);
var expectation =
[" print(1);","}"," return 2;"," return 2;",
" throw new Error();"," print(3);","} // STOP"];
assertEquals(log, expectation);
});
Debug.setBreakPoint(f, 1);
// Copyright 2017 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.
Debug = debug.Debug
var exception = null;
var log = [];
function listener(event, exec_state, event_data, data) {
try {
if (event == Debug.DebugEvent.Break) {
var line = exec_state.frame(0).sourceLineText();
log.push(line);
if (!/STOP/.test(line)) {
exec_state.prepareStep(Debug.StepAction.StepIn);
}
}
} catch (e) {
exception = e;
}
};
Debug.setListener(listener);
Promise.resolve().then(
function() {
print(1);
}
).then(
function() {
return 2;
}
).then(
function() {
throw new Error();
}
).catch(
function() {
print(3);
} // STOP
);
setTimeout(function() {
Debug.setListener(null);
assertNull(exception);
var expectation =
["debugger;","debugger;"," print(1);","}"," return 2;"," return 2;",
" throw new Error();"," print(3);","} // STOP"];
assertEquals(log, expectation);
});
debugger;
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