Chromium Code Reviews| OLD | NEW |
|---|---|
| (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.architecture, isNotNull); | |
| 10 expect(vm.architectureBits == 32 || | |
| 11 vm.architectureBits == 64, isTrue); | |
| 12 }, | |
| 13 | |
| 14 ]; | |
| 15 | |
| 16 main(args) => runIsolateTests(args, tests); | |
| OLD | NEW |