73a059d406
Also add functionality for the tool to do offsets. Finally run in on the pkg/vm_service/test/ folder. Change-Id: Ifa4ca60ed0707e6211baf4b9df140802d5cecf6f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/404881 Commit-Queue: Jens Johansen <jensj@google.com> Reviewed-by: Slava Egorov <vegorov@google.com>
70 lines
2.0 KiB
Dart
70 lines
2.0 KiB
Dart
// 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 'dart:developer';
|
|
import 'dart:isolate' show ReceivePort;
|
|
|
|
import 'package:test/test.dart';
|
|
import 'package:vm_service/vm_service.dart';
|
|
|
|
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_idle_isolate_test.dart
|
|
//
|
|
const LINE_A = 27;
|
|
// AUTOGENERATED END
|
|
|
|
late final ReceivePort receivePort;
|
|
|
|
void testMain() {
|
|
receivePort = ReceivePort();
|
|
debugger(); // LINE_A
|
|
}
|
|
|
|
final tests = <IsolateTest>[
|
|
hasStoppedAtBreakpoint,
|
|
stoppedAtLine(LINE_A),
|
|
resumeIsolate,
|
|
(VmService service, IsolateRef isolateRef) async {
|
|
final isolateId = isolateRef.id!;
|
|
// Wait for the isolate to become idle. We detect this by querying
|
|
// the stack until it becomes empty.
|
|
int frameCount;
|
|
do {
|
|
final stack = await service.getStack(isolateId);
|
|
frameCount = stack.frames!.length;
|
|
print('Frames: $frameCount');
|
|
await Future.delayed(const Duration(milliseconds: 10));
|
|
} while (frameCount > 0);
|
|
print('Isolate is idle.');
|
|
final isolate = await service.getIsolate(isolateId);
|
|
expect(isolate.pauseEvent!.kind, EventKind.kResume);
|
|
|
|
// Make sure that the isolate receives an interrupt even when it is
|
|
// idle. (https://github.com/dart-lang/sdk/issues/24349)
|
|
final interruptFuture = hasPausedFor(
|
|
service,
|
|
isolate,
|
|
EventKind.kPauseInterrupted,
|
|
);
|
|
print('Pausing...');
|
|
await service.pause(isolateId);
|
|
await interruptFuture;
|
|
},
|
|
];
|
|
|
|
void main([args = const <String>[]]) => runIsolateTests(
|
|
args,
|
|
tests,
|
|
'pause_idle_isolate_test.dart',
|
|
testeeConcurrent: testMain,
|
|
verboseVm: true,
|
|
extraArgs: ['--trace-service', '--trace-service-verbose'],
|
|
);
|