Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Side by Side Diff: pkg/analyzer_cli/test/all.dart

Issue 1990463002: Skip SDK summaries in the presence of SDK extenders (#26448). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer_cli/lib/src/driver.dart ('k') | pkg/analyzer_cli/test/sdk_ext_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'embedder_test.dart' as embedder; 8 import 'embedder_test.dart' as embedder;
9 import 'error_test.dart' as error; 9 import 'error_test.dart' as error;
10 import 'options_test.dart' as options; 10 import 'options_test.dart' as options;
11 import 'package_prefix_test.dart' as package_prefix; 11 import 'package_prefix_test.dart' as package_prefix;
12 import 'perf_report_test.dart' as perf; 12 import 'perf_report_test.dart' as perf;
13 import 'plugin_manager_test.dart' as plugin_manager; 13 import 'plugin_manager_test.dart' as plugin_manager;
14 import 'reporter_test.dart' as reporter; 14 import 'reporter_test.dart' as reporter;
15 import 'sdk_ext_test.dart' as sdk_ext;
15 import 'super_mixin_test.dart' as super_mixin; 16 import 'super_mixin_test.dart' as super_mixin;
16 //import 'sdk_ext_test.dart' as sdk_ext;
17 //import 'strong_mode_test.dart' as strong_mode; 17 //import 'strong_mode_test.dart' as strong_mode;
18 18
19 main() { 19 main() {
20 boot_loader.main(); 20 boot_loader.main();
21 build_mode_test.main(); 21 build_mode_test.main();
22 driver.main(); 22 driver.main();
23 embedder.main(); 23 embedder.main();
24 sdk_ext.main();
24 // TODO(pq): fix tests to run safely on the bots 25 // TODO(pq): fix tests to run safely on the bots
25 // https://github.com/dart-lang/sdk/issues/25001 26 // https://github.com/dart-lang/sdk/issues/25001
26 //sdk_ext.main();
27 //strong_mode.main(); 27 //strong_mode.main();
28 error.main(); 28 error.main();
29 options.main(); 29 options.main();
30 perf.main(); 30 perf.main();
31 plugin_manager.main(); 31 plugin_manager.main();
32 reporter.main(); 32 reporter.main();
33 super_mixin.main(); 33 super_mixin.main();
34 package_prefix.main(); 34 package_prefix.main();
35 } 35 }
OLDNEW
« no previous file with comments | « pkg/analyzer_cli/lib/src/driver.dart ('k') | pkg/analyzer_cli/test/sdk_ext_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698