summaryrefslogtreecommitdiff
path: root/Test/snapshots
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-06-26 22:32:51 +0200
committerGravatar wuestholz <unknown>2014-06-26 22:32:51 +0200
commitf2742460f1fe65bde86dd30b0c8523b1eea40a4f (patch)
treef5578d5a812e434c30ac650338c4e3327ec716b3 /Test/snapshots
parenta950dbe4cb278c934bdcb5d519e7c41f0fc4d0d0 (diff)
Fixed issue in verification result caching.
Diffstat (limited to 'Test/snapshots')
-rw-r--r--Test/snapshots/Snapshots15.v0.bpl13
-rw-r--r--Test/snapshots/Snapshots15.v1.bpl13
-rw-r--r--Test/snapshots/runtest.snapshot2
-rw-r--r--Test/snapshots/runtest.snapshot.expect7
4 files changed, 34 insertions, 1 deletions
diff --git a/Test/snapshots/Snapshots15.v0.bpl b/Test/snapshots/Snapshots15.v0.bpl
new file mode 100644
index 00000000..3dbf492e
--- /dev/null
+++ b/Test/snapshots/Snapshots15.v0.bpl
@@ -0,0 +1,13 @@
+procedure {:checksum "0"} M();
+
+implementation {:id "M"} {:checksum "1"} M()
+{
+ call N();
+
+ call N();
+
+ assert false;
+}
+
+procedure {:checksum "2"} N();
+ ensures false;
diff --git a/Test/snapshots/Snapshots15.v1.bpl b/Test/snapshots/Snapshots15.v1.bpl
new file mode 100644
index 00000000..877b247c
--- /dev/null
+++ b/Test/snapshots/Snapshots15.v1.bpl
@@ -0,0 +1,13 @@
+procedure {:checksum "0"} M();
+
+implementation {:id "M"} {:checksum "1"} M()
+{
+ call N();
+
+ call N();
+
+ assert false;
+}
+
+procedure {:checksum "3"} N();
+ ensures true;
diff --git a/Test/snapshots/runtest.snapshot b/Test/snapshots/runtest.snapshot
index d61e9e4a..9d456440 100644
--- a/Test/snapshots/runtest.snapshot
+++ b/Test/snapshots/runtest.snapshot
@@ -1,2 +1,2 @@
-// RUN: %boogie -verifySnapshots:2 -verifySeparately Snapshots0.bpl Snapshots1.bpl Snapshots2.bpl Snapshots3.bpl Snapshots4.bpl Snapshots5.bpl Snapshots6.bpl Snapshots7.bpl Snapshots8.bpl Snapshots9.bpl Snapshots10.bpl Snapshots11.bpl Snapshots12.bpl Snapshots13.bpl Snapshots14.bpl > "%t"
+// RUN: %boogie -verifySnapshots:2 -verifySeparately Snapshots0.bpl Snapshots1.bpl Snapshots2.bpl Snapshots3.bpl Snapshots4.bpl Snapshots5.bpl Snapshots6.bpl Snapshots7.bpl Snapshots8.bpl Snapshots9.bpl Snapshots10.bpl Snapshots11.bpl Snapshots12.bpl Snapshots13.bpl Snapshots14.bpl Snapshots15.bpl > "%t"
// RUN: %diff "%s.expect" "%t"
diff --git a/Test/snapshots/runtest.snapshot.expect b/Test/snapshots/runtest.snapshot.expect
index a370cbae..48251668 100644
--- a/Test/snapshots/runtest.snapshot.expect
+++ b/Test/snapshots/runtest.snapshot.expect
@@ -135,3 +135,10 @@ Execution trace:
Snapshots14.v1.bpl(5,5): anon0
Boogie program verifier finished with 0 verified, 1 error
+
+Boogie program verifier finished with 1 verified, 0 errors
+Snapshots15.v1.bpl(9,5): Error BP5001: This assertion might not hold.
+Execution trace:
+ Snapshots15.v1.bpl(5,5): anon0
+
+Boogie program verifier finished with 0 verified, 1 error