[pitboss/grind] deferred session-0023 (20260516T052512Z-20f8)

This commit is contained in:
pitboss 2026-05-16 13:05:27 -05:00
parent 1d1975a2ea
commit 6189c4a4c5
20 changed files with 297 additions and 1 deletions

View file

@ -74,6 +74,7 @@ fn diag_with_verdict(status: VerifyStatus) -> Diag {
differential: None,
replay_stable: None,
wrong: None,
hardening_outcome: None,
},
VerifyStatus::NotConfirmed => VerifyResult {
finding_id: "abc123".into(),
@ -93,6 +94,7 @@ fn diag_with_verdict(status: VerifyStatus) -> Diag {
differential: None,
replay_stable: None,
wrong: None,
hardening_outcome: None,
},
VerifyStatus::Unsupported => VerifyResult {
finding_id: "abc123".into(),
@ -106,6 +108,7 @@ fn diag_with_verdict(status: VerifyStatus) -> Diag {
differential: None,
replay_stable: None,
wrong: None,
hardening_outcome: None,
},
VerifyStatus::Inconclusive => VerifyResult {
finding_id: "abc123".into(),
@ -119,6 +122,7 @@ fn diag_with_verdict(status: VerifyStatus) -> Diag {
differential: None,
replay_stable: None,
wrong: None,
hardening_outcome: None,
},
};