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