forked from tokio-rs/prost
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added comment describing the unwind value.
- Loading branch information
Yoshiki Takashima
committed
Jan 13, 2023
1 parent
ada5828
commit 341df0b
Showing
1 changed file
with
7 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,10 +106,16 @@ jobs: | |
- name: Verify with Kani | ||
uses: model-checking/[email protected] | ||
with: | ||
enable-propproof: true | ||
args: | | ||
--tests -p prost-types --default-unwind 3 \ | ||
--harness "tests::check_timestamp_roundtrip_via_system_time" | ||
enable-propproof: true | ||
# --default-unwind N roughly corresponds to how much effort | ||
# Kani will spend trying to prove correctness of the | ||
# program. Higher the number, more programs can be proven | ||
# correct. However, Kani will require more time and memory. If | ||
# Kani fails with "Failed Checks: unwinding assertion," this | ||
# number may need to be raised for Kani to succeed. | ||
no-std: | ||
runs-on: ubuntu-latest | ||
|