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

Unified Diff: tools/gardening/bin/compare_failures.dart

Issue 2987403002: Allow multiple inputs to compare-failures (Closed)
Patch Set: Created 3 years, 4 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 | « no previous file | tools/gardening/lib/src/buildbot_loading.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gardening/bin/compare_failures.dart
diff --git a/tools/gardening/bin/compare_failures.dart b/tools/gardening/bin/compare_failures.dart
index 67f39db33493887731faaf9f30af4b6d4ccc01a6..f679775375da15de51bd07b454d22a10f85b5dd5 100644
--- a/tools/gardening/bin/compare_failures.dart
+++ b/tools/gardening/bin/compare_failures.dart
@@ -35,7 +35,7 @@ main(List<String> args) async {
var runCount = int.parse(argResults['run-count'], onError: (_) => null);
- if (argResults.rest.length != 1 || argResults['help'] || runCount == null) {
+ if (argResults.rest.length < 1 || argResults['help'] || runCount == null) {
help(argParser);
if (argResults['help']) return;
exit(1);
« no previous file with comments | « no previous file | tools/gardening/lib/src/buildbot_loading.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698