Skip to content

Commit 1b6da6b

Browse files
authored
Merge pull request #45 from peterschrammel/fix-memcleanup
Fix parsing of memcleanup property
2 parents 8a21b6f + 6bd3fdc commit 1b6da6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool-wrapper.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if(/^CHECK\(init\((\S+)\(\)\),LTL\((\S+)\)\)$/) {
2323
print "PROP=\"unreach_call\"\n" if($2 =~ /^G!call\(__VERIFIER_error\(\)\)$/);
2424
print "PROP=\"unreach_call\"\n" if($2 =~ /^Gassert$/);
2525
print "PROP=\"memsafety\"\n" if($2 =~ /^Gvalid-(free|deref|memtrack)$/);
26-
print "PROP=\"memcleanup\"\n" if($2 =~ /^Gvalid-(free|deref|memtrack)$/);
26+
print "PROP=\"memcleanup\"\n" if($2 =~ /^Gvalid-memcleanup$/);
2727
print "PROP=\"overflow\"\n" if($2 =~ /^G!overflow$/);
2828
print "PROP=\"termination\"\n" if($2 =~ /^Fend$/);
2929
}'

0 commit comments

Comments
 (0)