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

Unified Diff: pkg/analyzer_cli/test/options_test.dart

Issue 2356523002: Remove fallback mode and corresponding cli flag. (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer_cli/lib/src/options.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_cli/test/options_test.dart
diff --git a/pkg/analyzer_cli/test/options_test.dart b/pkg/analyzer_cli/test/options_test.dart
index d34d7afdd8cfff71b10c7d6a5acd46213d0efe59..b74edc16fd241c2770f593219fb89c5731bb070a 100644
--- a/pkg/analyzer_cli/test/options_test.dart
+++ b/pkg/analyzer_cli/test/options_test.dart
@@ -21,7 +21,6 @@ main() {
expect(options, isNotNull);
expect(options.buildMode, isFalse);
expect(options.buildAnalysisOutput, isNull);
- expect(options.buildSummaryFallback, isFalse);
expect(options.buildSummaryInputs, isEmpty);
expect(options.buildSummaryOnly, isFalse);
expect(options.buildSummaryOutput, isNull);
@@ -264,17 +263,6 @@ class CommandLineOptionsTest extends AbstractStatusTest {
expect(options.sourceFiles, isEmpty);
}
- test_buildSummaryFallback() {
- _parse([
- '--build-mode',
- '--build-summary-output=//path/to/output.sum',
- '--build-summary-fallback',
- 'package:p/foo.dart|/path/to/p/lib/foo.dart'
- ]);
- expect(options.buildMode, isTrue);
- expect(options.buildSummaryFallback, isTrue);
- }
-
test_buildSummaryInputs_commaSeparated() {
_parse([
'--build-mode',
« no previous file with comments | « pkg/analyzer_cli/lib/src/options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698