blob: ce51f3e787905a1c01e037f4bb32249722874985 [file]
// Copyright (c) 2023, 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 'package:vm_service/vm_service.dart';
import 'break_on_async_function_lib.dart' as testee_lib;
import 'common/service_test_common.dart';
void main([args = const <String>[]]) =>
IsolateTestHarness('break_on_async_function_lib.dart', args)
.hasStoppedAtBreakpoint()
// Add breakpoint at the entry of async function
.addCustomTest((VmService service, IsolateRef isolateRef) async {
final isolateId = isolateRef.id!;
final isolate = await service.getIsolate(isolateId);
final rootLib = (await service.getObject(
isolateId,
isolate.libraries!
.firstWhere(
(l) => l.uri!.contains('break_on_async_function_lib'))
.id!,
)) as Library;
final function =
rootLib.functions!.singleWhere((f) => f.name == 'testFunction');
final bpt =
await service.addBreakpointAtEntry(isolateId, function.id!);
print(bpt);
})
.resumeIsolate()
.hasStoppedAtBreakpoint()
.stoppedAtLine('LINE_A')
.resumeIsolate()
.run(testeeMain: testee_lib.main);