You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected to see this happen: Both commands should succeed
Instead, this happened: The second command failed due to a compilation error
error[E0425]: cannot find function `concrete_playback_run` in crate `kani`
--> src/lib.rs:
|
| kani::concrete_playback_run(concrete_vals, fuzz_add);
| ^^^^^^^^^^^^^^^^^^^^^ not found in `kani`
The problem is that the harness uses a function that is only included when we execute concrete playback. We should still implement that function in verification mode.
The text was updated successfully, but these errors were encountered:
I tried this code:
using the following command line sequence:
with Kani version:
I expected to see this happen: Both commands should succeed
Instead, this happened: The second command failed due to a compilation error
The problem is that the harness uses a function that is only included when we execute concrete playback. We should still implement that function in verification mode.
The text was updated successfully, but these errors were encountered: