| OLD | NEW |
| 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=--error_on_bad_type --error_on_bad_override | 4 // VMOptions=--error_on_bad_type --error_on_bad_override |
| 5 | 5 |
| 6 import 'package:observatory/models.dart' as M; | 6 import 'package:observatory/models.dart' as M; |
| 7 import 'package:observatory/service_io.dart'; | 7 import 'package:observatory/service_io.dart'; |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 9 import 'test_helper.dart'; | 9 import 'test_helper.dart'; |
| 10 import 'dart:async'; | 10 import 'dart:async'; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 expect(pausetime2.millisecondsSinceEpoch, | 82 expect(pausetime2.millisecondsSinceEpoch, |
| 83 greaterThan(pausetime1.millisecondsSinceEpoch)); | 83 greaterThan(pausetime1.millisecondsSinceEpoch)); |
| 84 }, | 84 }, |
| 85 | 85 |
| 86 ]; | 86 ]; |
| 87 | 87 |
| 88 main(args) => runIsolateTests(args, tests, | 88 main(args) => runIsolateTests(args, tests, |
| 89 testeeConcurrent: testMain, | 89 testeeConcurrent: testMain, |
| 90 pause_on_start: true, | 90 pause_on_start: true, |
| 91 pause_on_exit: true, | 91 pause_on_exit: true, |
| 92 trace_service: true, | 92 verbose_vm: true, |
| 93 verbose_vm: true); | 93 extraArgs: [ '--trace-service', |
| 94 '--trace-service-verbose' ]); |
| OLD | NEW |