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