aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools')
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto2
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamerUtils.java2
2 files changed, 2 insertions, 2 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 94e938a84c..a9c61f105c 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
@@ -432,7 +432,7 @@ enum TestStatus {
INCOMPLETE = 5;
REMOTE_FAILURE = 6;
FAILED_TO_BUILD = 7;
- BLAZE_HALTED_BEFORE_TESTING = 8;
+ TOOL_HALTED_BEFORE_TESTING = 8;
};
// Payload on events reporting about individual test action.
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamerUtils.java b/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamerUtils.java
index cb7fa17a98..fc0f161e5a 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamerUtils.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamerUtils.java
@@ -44,7 +44,7 @@ public final class BuildEventStreamerUtils {
case REMOTE_FAILURE:
return BuildEventStreamProtos.TestStatus.REMOTE_FAILURE;
case BLAZE_HALTED_BEFORE_TESTING:
- return BuildEventStreamProtos.TestStatus.BLAZE_HALTED_BEFORE_TESTING;
+ return BuildEventStreamProtos.TestStatus.TOOL_HALTED_BEFORE_TESTING;
default:
// Not used as the above is a complete case distinction; however, by the open
// nature of protobuf enums, we need the clause to convice java, that we always