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

Side by Side Diff: runtime/bin/vmservice/observatory/test/vm_test.dart

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 import 'package:observatory/service_io.dart'; 1 import 'package:observatory/service_io.dart';
2 import 'package:unittest/unittest.dart'; 2 import 'package:unittest/unittest.dart';
3 import 'test_helper.dart'; 3 import 'test_helper.dart';
4 4
5 var tests = [ 5 var tests = [
6 6
7 (Isolate isolate) { 7 (Isolate isolate) {
8 VM vm = isolate.owner; 8 VM vm = isolate.owner;
9 expect(vm.targetCPU, isNotNull); 9 expect(vm.targetCPU, isNotNull);
10 expect(vm.architectureBits == 32 || 10 expect(vm.architectureBits == 32 ||
11 vm.architectureBits == 64, isTrue); 11 vm.architectureBits == 64, isTrue);
12 }, 12 },
13 13
14 ]; 14 ];
15 15
16 main(args) => runIsolateTests(args, tests); 16 main(args) => runIsolateTests(args, tests);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698