aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/protobuf
diff options
context:
space:
mode:
authorGravatar ulfjack <ulfjack@google.com>2018-06-08 13:57:36 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-06-08 13:59:01 -0700
commit632052d953a705abf496178bf519b8dbd73484bb (patch)
tree044c5e29a5924c4265cbb4cdd816df9ebd0d0693 /src/main/protobuf
parent6d0de4337482b65509374f672c06fd9af81eea18 (diff)
Add status details to the protos
Both for the build event stream proto, which contains the TestResult event, and to the test status proto which is used for caching. The new field may be populated in the future. PiperOrigin-RevId: 199846232
Diffstat (limited to 'src/main/protobuf')
-rw-r--r--src/main/protobuf/test_status.proto1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/protobuf/test_status.proto b/src/main/protobuf/test_status.proto
index fc7f6c7f6c..72cb268607 100644
--- a/src/main/protobuf/test_status.proto
+++ b/src/main/protobuf/test_status.proto
@@ -82,6 +82,7 @@ message TestResultData {
// Following data is informational.
optional BlazeTestStatus status = 3 [default = NO_STATUS];
+ optional string status_details = 16;
repeated string failed_logs = 4;
repeated string warning = 5;
optional bool has_coverage = 6;