diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-05-04 11:34:54 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-05-07 09:46:13 +0200 |
commit | 9f00b012083366ee512cdeaf4da2e58d148dddde (patch) | |
tree | b5825d046a321df4b0cbbc759ee25ba55994c6ed /sonar-batch-protocol/src/main/protobuf/file_source_db.proto | |
parent | 885033d25e863905348f37a566b8cdfc840702b7 (diff) | |
download | sonarqube-9f00b012083366ee512cdeaf4da2e58d148dddde.tar.gz sonarqube-9f00b012083366ee512cdeaf4da2e58d148dddde.zip |
update WS to rely on new tests - SONAR-6255
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.proto | 9 |
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; + } } |