File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ declare -A OPTIONS
88OPTIONS ["label" ]= "--error-label"
99OPTIONS ["unreach_call" ]= ""
1010OPTIONS ["termination" ]= ""
11- OPTIONS ["overflow" ]= "--signed-overflow-check"
12- OPTIONS ["memsafety" ]= "--pointer-check --memory-leak-check --bounds-check"
11+ OPTIONS ["overflow" ]= "--signed-overflow-check --no-assertions "
12+ OPTIONS ["memsafety" ]= "--pointer-check --memory-leak-check --bounds-check --no-assertions "
1313
1414parse_property_file ()
1515{
@@ -34,6 +34,9 @@ parse_result()
3434 elif tail -n 50 $LOG . ok | \
3535 grep -Eq "^(\[.*\] |[[:space:]]*)dereference failure:" ; then
3636 echo 'FALSE(valid-deref)'
37+ elif tail -n 50 $LOG . ok | \
38+ grep -Eq "^(\[.*\] |[[:space:]]*)array.* upper bound in " ; then
39+ echo 'FALSE(valid-deref)'
3740 elif tail -n 50 $LOG . ok | \
3841 grep -Eq "^(\[.*\] |[[:space:]]*)double free$" ; then
3942 echo 'FALSE(valid-free)'
You can’t perform that action at this time.
0 commit comments