github.com/GoogleCloudPlatform/testgrid@v0.0.174/pb/test_status/test_status.proto (about) 1 syntax = "proto3"; 2 3 package testgrid.test_status; 4 5 option go_package = "github.com/GoogleCloudPlatform/testgrid/pb/test_status"; 6 7 enum TestStatus { 8 // Proto versions of test_status.py's GathererStatus 9 // Note that: NO_RESULT is used to signal that there should be no change. 10 // This must be updated every time a new GathererStatus is added. 11 NO_RESULT = 0; 12 PASS = 1; 13 PASS_WITH_ERRORS = 2; 14 PASS_WITH_SKIPS = 3; 15 RUNNING = 4; 16 CATEGORIZED_ABORT = 5; 17 UNKNOWN = 6; 18 CANCEL = 7; 19 BLOCKED = 8; 20 TIMED_OUT = 9; 21 CATEGORIZED_FAIL = 10; 22 BUILD_FAIL = 11; 23 FAIL = 12; 24 FLAKY = 13; 25 TOOL_FAIL = 14; 26 BUILD_PASSED = 15; 27 }