File tree 1 file changed +2
-0
lines changed 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,14 @@ $goto_harness "$input_goto_binary" "$harness_file" --harness-function-name $entr
58
58
$cbmc --show-goto-functions " $harness_file "
59
59
if [[ " ${harness_file} " == " harness.gb" ]]; then
60
60
$cbmc --function $entry_point " $harness_file " \
61
+ --no-standard-checks ` # deactivate default checks to make tests pass without significant adapting` \
61
62
--pointer-check ` # because we want to see out of bounds errors` \
62
63
--unwind 11 ` # with the way we set up arrays symex can't figure out loop bounds automatically` \
63
64
--unwinding-assertions ` # we want to make sure we don't accidentally pass tests because we didn't unwind enough` \
64
65
# cbmc args end
65
66
else
66
67
$cbmc --function $entry_point " $input_c_file " " $harness_file " \
68
+ --no-standard-checks ` # deactivate default checks to make tests pass without significant adapting` \
67
69
--pointer-check ` # because we want to see out of bounds errors` \
68
70
--unwind 11 ` # with the way we set up arrays symex can't figure out loop bounds automatically` \
69
71
--unwinding-assertions ` # we want to make sure we don't accidentally pass tests because we didn't unwind enough` \
You can’t perform that action at this time.
0 commit comments