Skip to content

Commit 0873749

Browse files
committed
Parse new memory leak output
1 parent 5e1c3f8 commit 0873749

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tool-wrapper.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ parse_result()
3131
if tail -n 50 $LOG.ok | \
3232
grep -Eq "^(\[.*\] .*__CPROVER_memory_leak == NULL|[[:space:]]*__CPROVER_memory_leak == NULL$)" ; then
3333
echo 'FALSE(valid-memtrack)'
34+
elif tail -n 50 $LOG.ok | \
35+
grep -Eq "^(\[.*\] |[[:space:]]*)dynamically allocated memory never freed in " ; then
36+
echo 'FALSE(valid-memtrack)'
3437
elif tail -n 50 $LOG.ok | \
3538
grep -Eq "^(\[.*\] |[[:space:]]*)dereference failure:" ; then
3639
echo 'FALSE(valid-deref)'

0 commit comments

Comments
 (0)