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

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

Issue 2968403002: Remove the --build-summary-only-diet option. (Closed)
Patch Set: Created 3 years, 5 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
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 2a5b1758f571cd06d28b49303cf91d741456889c..aa40368a4ecfd94cd8404884489fd63f82bb5f5e 100644
--- a/pkg/analyzer_cli/test/options_test.dart
+++ b/pkg/analyzer_cli/test/options_test.dart
@@ -50,7 +50,6 @@ main() {
expect(options.buildAnalysisOutput, isNull);
expect(options.buildSummaryInputs, isEmpty);
expect(options.buildSummaryOnly, isFalse);
- expect(options.buildSummaryOnlyDiet, isFalse);
expect(options.buildSummaryOnlyUnlinked, isFalse);
expect(options.buildSummaryOutput, isNull);
expect(options.buildSummaryOutputSemantic, isNull);
@@ -367,19 +366,6 @@ class CommandLineOptionsTest extends AbstractStatusTest {
expect(options.buildSummaryOnly, isTrue);
}
- test_buildSummaryOnlyDiet() {
- _parse([
- '--build-mode',
- '--build-summary-output=/path/to/aaa.sum',
- '--build-summary-only',
- '--build-summary-only-diet',
- 'package:p/foo.dart|/path/to/p/lib/foo.dart'
- ]);
- expect(options.buildMode, isTrue);
- expect(options.buildSummaryOnly, isTrue);
- expect(options.buildSummaryOnlyDiet, isTrue);
- }
-
test_buildSummaryOnlyUnlinked() {
_parse([
'--build-mode',
« pkg/analyzer_cli/lib/src/driver.dart ('K') | « 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