Skip to content

Commit

Permalink
[chore] New script options
Browse files Browse the repository at this point in the history
  • Loading branch information
Columpio committed Nov 7, 2023
1 parent fed791d commit ad56373
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/kleef
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ def klee_options(

if f_cov:
cmd += [
"--mem-trigger-cof", # Start on the fly tests generation after approaching memory cup
"--use-alpha-equivalence=true",
"--track-coverage=branches",
"--track-coverage=all", # Only branches and only instructions are wrong in real life. E.g., ternary operators are sometimes counted as different branches, while we stick to look at them as a single instruction from a single branch
"--use-iterative-deepening-search=max-cycles",
f"--max-solver-time={MAX_SOLVER_TIME}s",
# "--tc-type=cov",
Expand Down

0 comments on commit ad56373

Please sign in to comment.