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

Side by Side Diff: runtime/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
(Empty)
1 import 'package:observatory/service_io.dart';
2 import 'package:unittest/unittest.dart';
3 import 'test_helper.dart';
4
5 var tests = [
6
7 (Isolate isolate) {
8 VM vm = isolate.owner;
9 expect(vm.targetCPU, isNotNull);
10 expect(vm.architectureBits == 32 ||
11 vm.architectureBits == 64, isTrue);
12 },
13
14 ];
15
16 main(args) => runIsolateTests(args, tests);
OLDNEW
« no previous file with comments | « runtime/observatory/test/vm_metrics_test.dart ('k') | runtime/observatory/test/weak_properties_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698