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

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

Issue 2559523005: Remove the AnalysisOptionsProcessor (Closed)
Patch Set: Created 4 years 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
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;
6 import 'build_mode_test.dart' as build_mode_test; 5 import 'build_mode_test.dart' as build_mode_test;
7 import 'driver_test.dart' as driver; 6 import 'driver_test.dart' as driver;
8 import 'embedder_test.dart' as embedder; 7 import 'embedder_test.dart' as embedder;
9 import 'error_test.dart' as error; 8 import 'error_test.dart' as error;
10 import 'options_test.dart' as options; 9 import 'options_test.dart' as options;
11 import 'package_prefix_test.dart' as package_prefix; 10 import 'package_prefix_test.dart' as package_prefix;
12 import 'perf_report_test.dart' as perf; 11 import 'perf_report_test.dart' as perf;
13 import 'plugin_manager_test.dart' as plugin_manager;
14 import 'reporter_test.dart' as reporter; 12 import 'reporter_test.dart' as reporter;
15 import 'sdk_ext_test.dart' as sdk_ext; 13 import 'sdk_ext_test.dart' as sdk_ext;
16 import 'super_mixin_test.dart' as super_mixin; 14 import 'super_mixin_test.dart' as super_mixin;
17 //import 'strong_mode_test.dart' as strong_mode; 15 //import 'strong_mode_test.dart' as strong_mode;
18 16
19 main() { 17 main() {
20 boot_loader.main();
21 build_mode_test.main(); 18 build_mode_test.main();
22 driver.main(); 19 driver.main();
23 embedder.main(); 20 embedder.main();
24 sdk_ext.main(); 21 sdk_ext.main();
25 // TODO(pq): fix tests to run safely on the bots 22 // TODO(pq): fix tests to run safely on the bots
26 // https://github.com/dart-lang/sdk/issues/25001 23 // https://github.com/dart-lang/sdk/issues/25001
27 //strong_mode.main(); 24 //strong_mode.main();
28 error.main(); 25 error.main();
29 options.main(); 26 options.main();
30 perf.main(); 27 perf.main();
31 plugin_manager.main();
32 reporter.main(); 28 reporter.main();
33 super_mixin.main(); 29 super_mixin.main();
34 package_prefix.main(); 30 package_prefix.main();
35 } 31 }
OLDNEW
« no previous file with comments | « pkg/analyzer_cli/lib/src/plugin/plugin_manager.dart ('k') | pkg/analyzer_cli/test/boot_loader_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698