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

Unified Diff: recipe_engine/test_result.proto

Issue 2797023002: Always identify test names that lead to failures (Closed)
Patch Set: review Created 3 years, 8 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: recipe_engine/test_result.proto
diff --git a/recipe_engine/test_result.proto b/recipe_engine/test_result.proto
index 25ac5f72261630904b298cfca5029cb4fd6cdd89..a37127558a19c3c67693c4d02199cb563cbed3d6 100644
--- a/recipe_engine/test_result.proto
+++ b/recipe_engine/test_result.proto
@@ -51,11 +51,16 @@ message TestResult {
int64 lineno = 6;
}
+ message InternalFailure {
+ }
+
message TestFailure {
oneof failures {
DiffFailure diff_failure = 1;
CheckFailure check_failure = 2;
+
+ InternalFailure internal_failure = 3;
iannucci 2017/04/04 20:24:51 I suspect 'internal_failure' isn't quite right; mo
Paweł Hajdan Jr. 2017/04/04 20:32:03 Added comment to the proto. As indicated by the c
}
}

Powered by Google App Engine
This is Rietveld 408576698