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

Unified Diff: runtime/observatory/test/code_test.dart

Issue 1071363002: Relocate service library tests and hookup a working status file (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/test/classes_test.dart ('k') | runtime/observatory/test/command_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/test/code_test.dart
diff --git a/runtime/observatory/test/code_test.dart b/runtime/observatory/test/code_test.dart
deleted file mode 100644
index b91972cccfd21dfa5cf739881edd6b44aeefd94f..0000000000000000000000000000000000000000
--- a/runtime/observatory/test/code_test.dart
+++ /dev/null
@@ -1,86 +0,0 @@
-// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-// VMOptions=--compile-all --error_on_bad_type --error_on_bad_override --checked
-
-import 'package:observatory/service_io.dart';
-import 'package:unittest/unittest.dart';
-import 'test_helper.dart';
-import 'dart:async';
-
-int counter = 0;
-
-void funcB() {
- counter++; // line 13
- if (counter % 100000000 == 0) {
- print(counter);
- }
-}
-
-void funcA() {
- funcB();
-}
-
-void testFunction() {
- while (true) {
- funcA();
- }
-}
-
-var tests = [
-
-// Go to breakpoint at line 13.
-(Isolate isolate) {
- return isolate.rootLib.load().then((_) {
- // Set up a listener to wait for breakpoint events.
- Completer completer = new Completer();
- isolate.vm.events.stream.listen((ServiceEvent event) {
- if (event.eventType == ServiceEvent.kPauseBreakpoint) {
- print('Breakpoint reached');
- completer.complete();
- }
- });
-
- // Add the breakpoint.
- var script = isolate.rootLib.scripts[0];
- var line = 13;
- return isolate.addBreakpoint(script, line).then((ServiceObject bpt) {
- return completer.future; // Wait for breakpoint reached.
- });
- });
-},
-
-// Inspect code objects for top two frames.
-(Isolate isolate) {
- return isolate.getStack().then((ServiceMap stack) {
- // Make sure we are in the right place.
- expect(stack.type, equals('Stack'));
- expect(stack['frames'].length, greaterThanOrEqualTo(3));
- var frame0 = stack['frames'][0];
- var frame1 = stack['frames'][1];
- print(frame0);
- expect(frame0['function'].name, equals('funcB'));
- expect(frame1['function'].name, equals('funcA'));
- var codeId0 = frame0['code'].id;
- var codeId1 = frame1['code'].id;
-
- List tests = [];
- // Load code from frame 0.
- tests.add(isolate.getObject(codeId0)..then((Code code) {
- expect(code.type, equals('Code'));
- expect(code.function.name, equals('funcB'));
- expect(code.hasDisassembly, equals(true));
- }));
- // Load code from frame 0.
- tests.add(isolate.getObject(codeId1)..then((Code code) {
- expect(code.type, equals('Code'));
- expect(code.function.name, equals('funcA'));
- expect(code.hasDisassembly, equals(true));
- }));
- return Future.wait(tests);
- });
-},
-
-];
-
-main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction);
« no previous file with comments | « runtime/observatory/test/classes_test.dart ('k') | runtime/observatory/test/command_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698