7bbea08f66
This refactoring makes it easier to write advanced tests and gives full control over what's happening to the test code. It also forces description for every test. BUG=none Review-Url: https://codereview.chromium.org/2891213002 Cr-Commit-Position: refs/heads/master@{#45412}
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
// 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.
|
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Debugger breaks in next script after stepOut from previous one.');
|
|
|
|
contextGroup.addScript(`
|
|
function test() {
|
|
setTimeout('var a = 1;//# sourceURL=timeout1.js', 0);
|
|
setTimeout(foo, 0);
|
|
setTimeout('var a = 3;//# sourceURL=timeout3.js', 0);
|
|
debugger;
|
|
}
|
|
//# sourceURL=foo.js`, 7, 26);
|
|
|
|
contextGroup.addScript(`
|
|
function foo() {
|
|
return 42;
|
|
}
|
|
//# sourceURL=timeout2.js`)
|
|
|
|
session.setupScriptMap();
|
|
var stepAction;
|
|
Protocol.Debugger.onPaused(message => {
|
|
session.logCallFrames(message.params.callFrames);
|
|
InspectorTest.log('');
|
|
Protocol.Debugger[stepAction]();
|
|
});
|
|
Protocol.Debugger.enable()
|
|
InspectorTest.runTestSuite([
|
|
function testStepOut(next) {
|
|
stepAction = 'stepOut';
|
|
Protocol.Runtime.evaluate({ expression: 'test()' })
|
|
.then(() => InspectorTest.waitForPendingTasks())
|
|
.then(next);
|
|
},
|
|
|
|
function testStepOver(next) {
|
|
stepAction = 'stepOver';
|
|
Protocol.Runtime.evaluate({ expression: 'test()' })
|
|
.then(() => InspectorTest.waitForPendingTasks())
|
|
.then(next);
|
|
},
|
|
|
|
function testStepInto(next) {
|
|
stepAction = 'stepInto';
|
|
Protocol.Runtime.evaluate({ expression: 'test()' })
|
|
.then(() => InspectorTest.waitForPendingTasks())
|
|
.then(next);
|
|
}
|
|
]);
|