blob: c565a2dc8d1bc6ca39491e461214561601aeca27 [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.
import 'dart:developer';
import 'common/service_test_common.dart';
import 'common/test_helper.dart';
// AUTOGENERATED START
//
// Update these constants by running:
//
// dart pkg/vm_service/test/update_line_numbers.dart <test.dart>
//
const LINE_A = 26;
const LINE_B = 27;
const LINE_0 = 31;
const LINE_C = 32;
const LINE_D = 34;
const LINE_E = 37;
const LINE_F = 40;
const LINE_G = 42;
// AUTOGENERATED END
Future<Never> helper() async {
print('helper'); // LINE_A.
throw 'a'; // LINE_B.
}
Future<void> testMain() async {
debugger(); // LINE_0.
print('mmmmm'); // LINE_C.
try {
await helper(); // LINE_D.
} catch (e) {
// arrive here on error.
print('error: $e'); // LINE_E.
} finally {
// arrive here in both cases.
print('foo'); // LINE_F.
}
print('z'); // LINE_G.
}
final tests = <IsolateTest>[
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_0), // debugger
stepOver,
stoppedAtLine(LINE_C), // print mmmm
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_D), // await helper
stepInto,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_A), // print helper
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_B), // throw a
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_D), // await helper (weird dispatching)
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_E), // print(error)
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_E), // print(error) (weird finally dispatching)
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_F), // print(foo)
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_G), // print(z)
resumeIsolate,
];
void main([args = const <String>[]]) => runIsolateTests(
args,
tests,
'async_single_step_exception_test.dart',
testeeConcurrent: testMain,
extraArgs: extraDebuggingArgs,
);