blob: 604e00b49b537c958f5a806a714198e5a9a5ba6c [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
//
// VMOptions=--lazy-async-stacks
import 'dart:developer';
import 'common/service_test_common.dart';
import 'common/test_helper.dart';
const LINE_A = 17;
const LINE_B = 18;
const LINE_C = 23;
const LINE_D = 24;
helper() async {
print('helper'); // LINE_A.
print('foobar'); // LINE_B.
}
testMain() {
debugger();
print('mmmmm'); // LINE_C.
helper(); // LINE_D.
print('z');
}
var tests = <IsolateTest>[
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_C),
stepOver, // print.
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_D),
stepInto,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_A),
stepOver, // print.
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_B),
resumeIsolate
];
main([args = const <String>[]]) => runIsolateTestsSynchronous(
args,
tests,
'async_single_step_into_test.dart',
testeeConcurrent: testMain,
extraArgs: extraDebuggingArgs,
);