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 | 4 |
| 5 import 'boot_loader_test.dart' as boot_loader; |
5 import 'driver_test.dart' as driver; | 6 import 'driver_test.dart' as driver; |
6 import 'error_test.dart' as error; | 7 import 'error_test.dart' as error; |
7 import 'options_test.dart' as options; | 8 import 'options_test.dart' as options; |
8 import 'perf_report_test.dart' as perf; | 9 import 'perf_report_test.dart' as perf; |
9 import 'plugin_manager_test.dart' as plugin_manager; | 10 import 'plugin_manager_test.dart' as plugin_manager; |
10 import 'reporter_test.dart' as reporter; | 11 import 'reporter_test.dart' as reporter; |
11 import 'super_mixin_test.dart' as super_mixin; | 12 import 'super_mixin_test.dart' as super_mixin; |
12 //import 'sdk_ext_test.dart' as sdk_ext; | 13 //import 'sdk_ext_test.dart' as sdk_ext; |
13 //import 'strong_mode_test.dart' as strong_mode; | 14 //import 'strong_mode_test.dart' as strong_mode; |
14 | 15 |
15 main() { | 16 main() { |
| 17 boot_loader.main(); |
16 driver.main(); | 18 driver.main(); |
17 // TODO(pq): fix tests to run safely on the bots | 19 // TODO(pq): fix tests to run safely on the bots |
18 // https://github.com/dart-lang/sdk/issues/25001 | 20 // https://github.com/dart-lang/sdk/issues/25001 |
19 //sdk_ext.main(); | 21 //sdk_ext.main(); |
20 //strong_mode.main(); | 22 //strong_mode.main(); |
21 error.main(); | 23 error.main(); |
22 options.main(); | 24 options.main(); |
23 perf.main(); | 25 perf.main(); |
24 plugin_manager.main(); | 26 plugin_manager.main(); |
25 reporter.main(); | 27 reporter.main(); |
26 super_mixin.main(); | 28 super_mixin.main(); |
27 } | 29 } |
OLD | NEW |