OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 import 'package:observatory/service_io.dart'; | 5 import 'package:observatory/service_io.dart'; |
6 import 'package:unittest/unittest.dart'; | 6 import 'package:unittest/unittest.dart'; |
7 import 'test_helper.dart'; | 7 import 'test_helper.dart'; |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 | 9 |
10 int counter = 0; | 10 int counter = 0; |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 var tests = [ | 29 var tests = [ |
30 | 30 |
31 // Go to breakpoint at line 13. | 31 // Go to breakpoint at line 13. |
32 (Isolate isolate) { | 32 (Isolate isolate) { |
33 return isolate.rootLib.load().then((_) { | 33 return isolate.rootLib.load().then((_) { |
34 // Set up a listener to wait for breakpoint events. | 34 // Set up a listener to wait for breakpoint events. |
35 Completer completer = new Completer(); | 35 Completer completer = new Completer(); |
36 List events = []; | 36 List events = []; |
37 isolate.vm.events.stream.listen((ServiceEvent event) { | 37 isolate.vm.events.stream.listen((ServiceEvent event) { |
38 if (event.eventType == 'BreakpointReached') { | 38 if (event.eventType == ServiceEvent.kPauseBreakpoint) { |
39 print('Breakpoint reached'); | 39 print('Breakpoint reached'); |
40 completer.complete(); | 40 completer.complete(); |
41 } | 41 } |
42 }); | 42 }); |
43 | 43 |
44 // Add the breakpoint. | 44 // Add the breakpoint. |
45 var script = isolate.rootLib.scripts[0]; | 45 var script = isolate.rootLib.scripts[0]; |
46 var line = 13; | 46 var line = 13; |
47 return isolate.addBreakpoint(script, line).then((ServiceObject bpt) { | 47 return isolate.addBreakpoint(script, line).then((ServiceObject bpt) { |
48 return completer.future; // Wait for breakpoint reached. | 48 return completer.future; // Wait for breakpoint reached. |
(...skipping 28 matching lines...) Expand all Loading... |
77 expect(code.function.name, equals('funcA')); | 77 expect(code.function.name, equals('funcA')); |
78 expect(code.hasDisassembly, equals(true)); | 78 expect(code.hasDisassembly, equals(true)); |
79 })); | 79 })); |
80 return Future.wait(tests); | 80 return Future.wait(tests); |
81 }); | 81 }); |
82 }, | 82 }, |
83 | 83 |
84 ]; | 84 ]; |
85 | 85 |
86 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); | 86 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); |
OLD | NEW |