| Index: runtime/observatory/tests/service/pause_on_start_then_step_test.dart
|
| diff --git a/runtime/observatory/tests/service/pause_on_start_then_step_test.dart b/runtime/observatory/tests/service/pause_on_start_then_step_test.dart
|
| index 20e91c5a196270e907a80145d882c8fb561104bf..316667f736ba26423f2deaa43f6a4f40a2441b86 100644
|
| --- a/runtime/observatory/tests/service/pause_on_start_then_step_test.dart
|
| +++ b/runtime/observatory/tests/service/pause_on_start_then_step_test.dart
|
| @@ -29,7 +29,9 @@ var tests = [
|
| isolate.pauseEvent.kind == ServiceEvent.kPauseStart) {
|
| // Wait for the isolate to hit PauseStart.
|
| subscription.cancel();
|
| + print('subscription cancelled.');
|
| } else {
|
| + print('waiting for pause start event.');
|
| await completer.future;
|
| }
|
|
|
| @@ -41,12 +43,14 @@ var tests = [
|
| subscription.cancel();
|
| completer.complete();
|
| }
|
| + print('Got ${event.kind}');
|
| });
|
|
|
| print('Stepping...');
|
| isolate.stepInto();
|
|
|
| // Wait for the isolate to hit PauseBreakpoint.
|
| + print('Waiting for PauseBreakpoint');
|
| await completer.future;
|
| },
|
|
|
|
|