aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/buildeventstream
diff options
context:
space:
mode:
authorGravatar aehlig <aehlig@google.com>2017-07-10 14:39:33 +0200
committerGravatar László Csomor <laszlocsomor@google.com>2017-07-10 17:41:23 +0200
commitd03d87f67ed7f55c23298a019186b4e84184688f (patch)
tree72bfb5271a155bf64d5034b8b6cb072e36002fc3 /src/main/java/com/google/devtools/build/lib/buildeventstream
parentd579b6eafd1d41a73c0dfce7b9ffcfdf1d607a97 (diff)
BEP: Report test warnings
Also report test warnings, if any, for completed test actions in the build event protocol. RELNOTES: None PiperOrigin-RevId: 161384061
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/buildeventstream')
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
index 200784b535..7e8253e244 100644
--- a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
+++ b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
@@ -429,6 +429,9 @@ message TestResult {
// Files (logs, test.xml, undeclared outputs, etc) generated by that test
// action.
repeated File test_action_output = 2;
+
+ // Warnings generated by that test action.
+ repeated string warning = 7;
}
// Payload of the event summarizing a test.