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

Side by Side Diff: runtime/observatory/tests/service/code_test.dart

Issue 1133733005: Use words please. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: also rename service rpc Created 5 years, 7 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
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 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override
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 13 matching lines...) Expand all
24 void testFunction() { 24 void testFunction() {
25 while (true) { 25 while (true) {
26 funcA(); 26 funcA();
27 } 27 }
28 } 28 }
29 29
30 var tests = [ 30 var tests = [
31 31
32 // Go to breakpoint at line 13. 32 // Go to breakpoint at line 13.
33 (Isolate isolate) { 33 (Isolate isolate) {
34 return isolate.rootLib.load().then((_) { 34 return isolate.rootLibrary.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 isolate.vm.events.stream.listen((ServiceEvent event) { 37 isolate.vm.events.stream.listen((ServiceEvent event) {
38 if (event.eventType == ServiceEvent.kPauseBreakpoint) { 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.rootLibrary.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.
49 }); 49 });
50 }); 50 });
51 }, 51 },
52 52
53 // Inspect code objects for top two frames. 53 // Inspect code objects for top two frames.
54 (Isolate isolate) { 54 (Isolate isolate) {
55 return isolate.getStack().then((ServiceMap stack) { 55 return isolate.getStack().then((ServiceMap stack) {
(...skipping 21 matching lines...) Expand all
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);
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/call_site_data_test.dart ('k') | runtime/observatory/tests/service/contexts_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698