aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf/file_source_db.proto')
-rw-r--r--sonar-batch-protocol/src/main/protobuf/file_source_db.proto9
1 files changed, 7 insertions, 2 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/file_source_db.proto b/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
index b14bd891038..48b916dbd78 100644
--- a/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
+++ b/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
@@ -37,8 +37,6 @@ Notes
package org.sonar.server.source.db;
-import "constants.proto";
-
option optimize_for = SPEED;
message Line {
@@ -87,4 +85,11 @@ message Test {
optional string file_uuid = 1;
repeated int32 covered_line = 2 [packed = true];
}
+
+ enum TestStatus {
+ OK = 1;
+ FAILURE = 2;
+ ERROR = 3;
+ SKIPPED = 4;
+ }
}