Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Side by Side Diff: runtime/observatory/test/eval_test.dart

Issue 979823003: Major rework of vm service events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/observatory/test/debugging_test.dart ('k') | runtime/observatory/test/gc_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 globalVar = 100; 10 int globalVar = 100;
(...skipping 17 matching lines...) Expand all
28 28
29 var tests = [ 29 var tests = [
30 30
31 // Go to breakpoint at line 16. 31 // Go to breakpoint at line 16.
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 = 16; 46 var line = 16;
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 evals.add(isolate.eval(instance, 'this + frog').then((result) { 85 evals.add(isolate.eval(instance, 'this + frog').then((result) {
86 expect(result.type, equals('Error')); 86 expect(result.type, equals('Error'));
87 })); 87 }));
88 return Future.wait(evals); 88 return Future.wait(evals);
89 }); 89 });
90 }, 90 },
91 91
92 ]; 92 ];
93 93
94 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); 94 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction);
OLDNEW
« no previous file with comments | « runtime/observatory/test/debugging_test.dart ('k') | runtime/observatory/test/gc_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698