-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also makes title of the predicate singular Signed-off-by: Aditya Sirish <[email protected]>
- Loading branch information
1 parent
bf9742d
commit 13efbe4
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
protos/in_toto_attestation/predicates/test_result/v0/test_result.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
syntax = "proto3"; | ||
|
||
package in_toto_attestation.predicates.test_result.v0; | ||
|
||
import "in_toto_attestation/v1/resource_descriptor.proto"; | ||
|
||
option go_package = "github.com/in-toto/attestation/go/predicates/test_result/v0"; | ||
option java_package = "io.github.intoto.attestation.predicates.test_result.v0"; | ||
|
||
message TestResult { | ||
string result = 1; | ||
|
||
repeated in_toto_attestation.v1.ResourceDescriptor configuration = 2; | ||
|
||
string url = 3; | ||
|
||
repeated string passed_tests = 4; | ||
|
||
repeated string warned_tests = 5; | ||
|
||
repeated string failed_tests = 6; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters