Replies: 1 comment 3 replies
-
Hi @tengjiang. Thanks for your interest in this effort. It looks like a bug was introduced in #229 that prevents the arguments from getting passed properly. I opened #232 to fix it. Until the PR is merged, you can apply this patch locally: diff --git a/scripts/run-kani.sh b/scripts/run-kani.sh
index 72aa8ef1760..63df2886d0d 100755
--- a/scripts/run-kani.sh
+++ b/scripts/run-kani.sh
@@ -288,7 +288,7 @@ main() {
# Run verification for all harnesses (not in parallel)
echo "Running Kani verify-std command..."
"$kani_path" verify-std -Z unstable-options ./library \
- $unstable_args
+ $unstable_args \
$command_args \
--enable-unstable \
--cbmc-args --object-bits 12 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to pick a challenge to start and am running something that's already been developed to get a taste of what it might look like by running the following command:
However, it seems to be running all the harnesses, not just the one I designated. Also, it tried to re-compile everything from scratch every time I ran the script. It's been hours and it's still running. I'd appreciate it if anyone could give me some pointers on which direction I should be aiming for right now. Thank you!
Compile message
Seems to be running harnesses that I did not designate:
Beta Was this translation helpful? Give feedback.
All reactions