summaryrefslogtreecommitdiff
path: root/Test/inline/expansion2.bpl
diff options
context:
space:
mode:
authorGravatar Dan Liew <daniel.liew@imperial.ac.uk>2014-05-07 19:36:02 +0100
committerGravatar Dan Liew <daniel.liew@imperial.ac.uk>2014-05-07 19:36:02 +0100
commit8702d84fd360d9c2f11da295d616af4738bfd09a (patch)
treeb3900efaeec0ffc53ab1a8c4a7e826ec66bc086d /Test/inline/expansion2.bpl
parent9f555ab92f7cfe9edab8f12277b27cdee1849c32 (diff)
Enabled the inline lit tests. In order to support expansion2.bpl
we now require the OutputCheck tool. The lit.site.cfg file has been taught to require that this tool is in the user's PATH before testing starts.
Diffstat (limited to 'Test/inline/expansion2.bpl')
-rw-r--r--Test/inline/expansion2.bpl5
1 files changed, 5 insertions, 0 deletions
diff --git a/Test/inline/expansion2.bpl b/Test/inline/expansion2.bpl
index b6ed19ed..da13d50f 100644
--- a/Test/inline/expansion2.bpl
+++ b/Test/inline/expansion2.bpl
@@ -1,3 +1,6 @@
+// RUN: %boogie -proverLog:%T/expand2.sx %s > %t
+// RUN: %diff %s.expect %t
+// RUN: %OutputCheck --file-to-check=%T/expand2.sx %s
function {:inline true} xxgz(x:int) returns(bool)
{ x > 0 }
function {:inline true} xxf1(x:int,y:bool) returns(int)
@@ -8,7 +11,9 @@ axiom (forall y:int, x:bool :: xxf1(y, x) > 1 ==> y > 0);
procedure foo()
{
+ // CHECK-NOT-L: xxgz
assert xxgz(12);
+ // CHECK-NOT-L: xxf1
assert xxf1(3,true) == 4;
}