| 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 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override --checked | 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override --checked |
| 5 | 5 |
| 6 import 'package:observatory/service_io.dart'; | 6 import 'package:observatory/service_io.dart'; |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 import 'test_helper.dart'; | 8 import 'test_helper.dart'; |
| 9 import 'dart:async'; | 9 import 'dart:async'; |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 } | 27 } |
| 28 } | 28 } |
| 29 | 29 |
| 30 var tests = [ | 30 var tests = [ |
| 31 | 31 |
| 32 // Go to breakpoint at line 16. | 32 // Go to breakpoint at line 16. |
| 33 (Isolate isolate) { | 33 (Isolate isolate) { |
| 34 return isolate.rootLib.load().then((_) { | 34 return isolate.rootLib.load().then((_) { |
| 35 // Set up a listener to wait for breakpoint events. | 35 // Set up a listener to wait for breakpoint events. |
| 36 Completer completer = new Completer(); | 36 Completer completer = new Completer(); |
| 37 List events = []; | |
| 38 isolate.vm.events.stream.listen((ServiceEvent event) { | 37 isolate.vm.events.stream.listen((ServiceEvent event) { |
| 39 if (event.eventType == ServiceEvent.kPauseBreakpoint) { | 38 if (event.eventType == ServiceEvent.kPauseBreakpoint) { |
| 40 print('Breakpoint reached'); | 39 print('Breakpoint reached'); |
| 41 completer.complete(); | 40 completer.complete(); |
| 42 } | 41 } |
| 43 }); | 42 }); |
| 44 | 43 |
| 45 // Add the breakpoint. | 44 // Add the breakpoint. |
| 46 var script = isolate.rootLib.scripts[0]; | 45 var script = isolate.rootLib.scripts[0]; |
| 47 var line = 16; | 46 var line = 16; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 evals.add(isolate.eval(instance, 'this + frog').then((result) { | 85 evals.add(isolate.eval(instance, 'this + frog').then((result) { |
| 87 expect(result.type, equals('Error')); | 86 expect(result.type, equals('Error')); |
| 88 })); | 87 })); |
| 89 return Future.wait(evals); | 88 return Future.wait(evals); |
| 90 }); | 89 }); |
| 91 }, | 90 }, |
| 92 | 91 |
| 93 ]; | 92 ]; |
| 94 | 93 |
| 95 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); | 94 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); |
| OLD | NEW |