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

Unified Diff: tools/gardening/lib/src/compare_failures_impl.dart

Issue 2990363002: Include passing tests in BuildResult.results (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 | « tools/gardening/lib/src/client.dart ('k') | tools/gardening/test/parse_build_results_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gardening/lib/src/compare_failures_impl.dart
diff --git a/tools/gardening/lib/src/compare_failures_impl.dart b/tools/gardening/lib/src/compare_failures_impl.dart
index f52bb549d1e7dc19ea4aa3bb442d964f932b2eed..f767a27a5244cb67d07ea3b9d0cb73a3ff87492d 100644
--- a/tools/gardening/lib/src/compare_failures_impl.dart
+++ b/tools/gardening/lib/src/compare_failures_impl.dart
@@ -32,13 +32,7 @@ Future<Map<BuildUri, List<BuildResult>>> loadBuildResults(
}
if (buildUriList.isEmpty) {
for (String url in args) {
- if (!url.endsWith('/text')) {
- // Use the text version of the stdio log.
- url += '/text';
- }
- Uri uri = Uri.parse(url);
- BuildUri buildUri = new BuildUri(uri);
- buildUriList.add(buildUri);
+ buildUriList.add(new BuildUri.fromUrl(url));
}
}
Map<BuildUri, List<BuildResult>> buildResults =
« no previous file with comments | « tools/gardening/lib/src/client.dart ('k') | tools/gardening/test/parse_build_results_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698