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

Unified Diff: tools/gardening/lib/src/buildbot_loading.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 | « no previous file | tools/gardening/lib/src/buildbot_structures.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gardening/lib/src/buildbot_loading.dart
diff --git a/tools/gardening/lib/src/buildbot_loading.dart b/tools/gardening/lib/src/buildbot_loading.dart
index 59056bcd818a6bd32039f0762279e7c3246c1b8b..6767bd01eeb50f01267cc8f943240cc1b19d4eb5 100644
--- a/tools/gardening/lib/src/buildbot_loading.dart
+++ b/tools/gardening/lib/src/buildbot_loading.dart
@@ -103,6 +103,11 @@ BuildResult parseTestStepResult(BuildUri buildUri, String text) {
} else if (line.startsWith('FAILED:')) {
currentFailure = <String>[];
currentFailure.add(line);
+ } else if (line.startsWith('Done ')) {
+ TestStatus status = parseTestStatus(line);
+ if (status != null) {
+ results.add(status);
+ }
}
if (line.startsWith('--- Total time:')) {
parsingTimingBlock = true;
« no previous file with comments | « no previous file | tools/gardening/lib/src/buildbot_structures.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698