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