diff options
author | qunyanm <qunyanm@hotmail.com> | 2015-11-25 11:50:43 -0800 |
---|---|---|
committer | qunyanm <qunyanm@hotmail.com> | 2015-11-25 11:50:43 -0800 |
commit | 280cb724b7499ed4f09f9a54e5ae457b1eb254ae (patch) | |
tree | ef34d69a8d48e8124f5816506339780dee5edc83 /Test | |
parent | a799e128af68911228d081202ba0bd294ced4a4f (diff) |
Use the EndCurly token when creating the ReturnCmd for unifiedExit
When there are more than one exit blocks, an unified exit block is
created which includes a ReturnCmd. However, the ReturnCmd is created
with NoToken. This causes the line/column number reported for a failed
postcondition to be (0,0). The right token should be the EndCurly since
the ReturnCmd is in the exit block.
Diffstat (limited to 'Test')
-rw-r--r-- | Test/test2/BadLineNumber.bpl | 15 | ||||
-rw-r--r-- | Test/test2/BadLineNumber.bpl.expect | 7 |
2 files changed, 22 insertions, 0 deletions
diff --git a/Test/test2/BadLineNumber.bpl b/Test/test2/BadLineNumber.bpl new file mode 100644 index 00000000..b8776a4e --- /dev/null +++ b/Test/test2/BadLineNumber.bpl @@ -0,0 +1,15 @@ +// RUN: %boogie "%s" > "%t" +// RUN: %diff "%s.expect" "%t" + +procedure p(); + ensures false; + +implementation p() +{ + if (*) + { + } + else + { + } +}
\ No newline at end of file diff --git a/Test/test2/BadLineNumber.bpl.expect b/Test/test2/BadLineNumber.bpl.expect new file mode 100644 index 00000000..bc5d1984 --- /dev/null +++ b/Test/test2/BadLineNumber.bpl.expect @@ -0,0 +1,7 @@ +BadLineNumber.bpl(15,1): Error BP5003: A postcondition might not hold on this return path. +BadLineNumber.bpl(5,3): Related location: This is the postcondition that might not hold. +Execution trace: + BadLineNumber.bpl(9,5): anon0 + BadLineNumber.bpl(14,5): anon3_Else + +Boogie program verifier finished with 0 verified, 1 error |