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

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

Issue 2710313002: rework analyzer_cli to use ContextBuilder getAnalysisOptions (Closed)
Patch Set: Created 3 years, 10 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
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 'analysis_options_test.dart' as analysis_options_test;
5 import 'build_mode_test.dart' as build_mode_test; 6 import 'build_mode_test.dart' as build_mode_test;
6 import 'driver_test.dart' as driver_test; 7 import 'driver_test.dart' as driver_test;
7 import 'embedder_test.dart' as embedder_test; 8 import 'embedder_test.dart' as embedder_test;
8 import 'error_test.dart' as error_test; 9 import 'error_test.dart' as error_test;
9 import 'errors_reported_once_test.dart' as errors_reported_once_test; 10 import 'errors_reported_once_test.dart' as errors_reported_once_test;
10 import 'options_test.dart' as options_test; 11 import 'options_test.dart' as options_test;
11 import 'package_prefix_test.dart' as package_prefix_test; 12 import 'package_prefix_test.dart' as package_prefix_test;
12 import 'perf_report_test.dart' as perf_report_test; 13 import 'perf_report_test.dart' as perf_report_test;
13 import 'reporter_test.dart' as reporter_test; 14 import 'reporter_test.dart' as reporter_test;
14 import 'sdk_ext_test.dart' as sdk_ext_test; 15 import 'sdk_ext_test.dart' as sdk_ext_test;
15 import 'super_mixin_test.dart' as super_mixin_test; 16 import 'super_mixin_test.dart' as super_mixin_test;
16 //import 'strong_mode_test.dart' as strong_mode_test; 17 //import 'strong_mode_test.dart' as strong_mode_test;
17 18
18 main() { 19 main() {
20 analysis_options_test.main();
19 build_mode_test.main(); 21 build_mode_test.main();
20 driver_test.main(); 22 driver_test.main();
21 embedder_test.main(); 23 embedder_test.main();
22 error_test.main(); 24 error_test.main();
23 errors_reported_once_test.main(); 25 errors_reported_once_test.main();
24 options_test.main(); 26 options_test.main();
25 package_prefix_test.main(); 27 package_prefix_test.main();
26 perf_report_test.main(); 28 perf_report_test.main();
27 reporter_test.main(); 29 reporter_test.main();
28 sdk_ext_test.main(); 30 sdk_ext_test.main();
29 super_mixin_test.main(); 31 super_mixin_test.main();
30 // TODO(pq): fix tests to run safely on the bots 32 // TODO(pq): fix tests to run safely on the bots
31 // https://github.com/dart-lang/sdk/issues/25001 33 // https://github.com/dart-lang/sdk/issues/25001
32 //strong_mode_test.main(); 34 //strong_mode_test.main();
33 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698