blob: dd934fbb79791bf24d4193424d7a2292fe379d6d [file] [log] [blame]
// 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 '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 pkg/vm_service/test/pause_on_start_then_step_test.dart
//
const LINE_A = 28;
// AUTOGENERATED END
void testMain() {
print('Hello');
}
final tests = <IsolateTest>[
hasPausedAtStart,
stepInto,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_A),
];
void main([args = const <String>[]]) /* LINE_A */ => runIsolateTests(
args,
tests,
'pause_on_start_then_step_test.dart',
testeeConcurrent: testMain,
pauseOnStart: true,
pauseOnExit: true,
verboseVm: true,
extraArgs: ['--trace-service', '--trace-service-verbose'],
);