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
The changes to model-checking/kani#2202 change how kani x.rs --harness "y" output looks like, and now it returns a fuzzy result, the extension needs to search for the exact harness.
For example,
if there are two functions
fnfunction_1(){
...}fnfunction_11(){
...}
the extension queries the output from kani for both the harnesses with the command kani x.rs --harness function_1
The text was updated successfully, but these errors were encountered:
If there's no way to run a single harness without ensuring that only that harness is run, maybe we could throw a warning to rename the harness to something unique (could modify the function ourselves before running the query).
jaisnan
changed the title
Querying kani with --harness breaks output parsing
Harnesses with overlapping substrings result in multiple harness being run
Jun 9, 2023
The changes to model-checking/kani#2202 change how
kani x.rs --harness "y"
output looks like, and now it returns a fuzzy result, the extension needs to search for the exact harness.For example,
if there are two functions
the extension queries the output from kani for both the harnesses with the command
kani x.rs --harness function_1
The text was updated successfully, but these errors were encountered: