diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-06-28 01:44:30 +0100 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-06-28 01:44:30 +0100 |
commit | 962f8d5252b3f5ec4d19e0cd2a430934bd55cc6d (patch) | |
tree | 27d5f9b0d130c6c1a6758bc0b7456b0aa51e34e0 /Test/test2/AssumptionVariables0.bpl | |
parent | e11d65009d0b4ba1327f5f5dd6b26367330611f0 (diff) |
Normalise line endings using a .gitattributes file. Unfortunately
this required that this commit globally modify most files. If you
want to use git blame to see the real author of a line use the
``-w`` flag so that whitespace changes are ignored.
Diffstat (limited to 'Test/test2/AssumptionVariables0.bpl')
-rw-r--r-- | Test/test2/AssumptionVariables0.bpl | 146 |
1 files changed, 73 insertions, 73 deletions
diff --git a/Test/test2/AssumptionVariables0.bpl b/Test/test2/AssumptionVariables0.bpl index 766c9d1e..84bf14ad 100644 --- a/Test/test2/AssumptionVariables0.bpl +++ b/Test/test2/AssumptionVariables0.bpl @@ -1,73 +1,73 @@ -// RUN: %boogie -noinfer "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-procedure Test0()
-{
- var {:assumption} a0: bool;
-
- assert a0;
-}
-
-
-procedure Test1(n: int)
-{
- var {:assumption} a0: bool;
-
- a0 := a0 && (0 <= n);
-
- assert a0; // error
-}
-
-
-procedure Test2()
-{
- var {:assumption} a0: bool;
-
- havoc a0;
-
- assert a0; // error
-}
-
-
-var {:assumption} ga0: bool;
-
-
-procedure Test3()
- modifies ga0;
-{
- ga0 := ga0 && true;
-
- assert ga0; // error
-}
-
-
-procedure Test4()
-{
- var {:assumption} a0: bool;
- var tmp: bool;
-
- tmp := a0;
-
- havoc a0;
-
- assert a0 ==> tmp;
-}
-
-
-procedure Test5(A: bool)
-{
- var {:assumption} a0: bool;
- var tmp0, tmp1: bool;
-
- a0 := a0 && A;
- tmp0 := a0;
-
- havoc a0;
-
- assert a0 ==> tmp0;
-
- tmp1 := a0;
-
- havoc a0;
-
- assert a0 ==> tmp1;
-}
+// RUN: %boogie -noinfer "%s" > "%t" +// RUN: %diff "%s.expect" "%t" +procedure Test0() +{ + var {:assumption} a0: bool; + + assert a0; +} + + +procedure Test1(n: int) +{ + var {:assumption} a0: bool; + + a0 := a0 && (0 <= n); + + assert a0; // error +} + + +procedure Test2() +{ + var {:assumption} a0: bool; + + havoc a0; + + assert a0; // error +} + + +var {:assumption} ga0: bool; + + +procedure Test3() + modifies ga0; +{ + ga0 := ga0 && true; + + assert ga0; // error +} + + +procedure Test4() +{ + var {:assumption} a0: bool; + var tmp: bool; + + tmp := a0; + + havoc a0; + + assert a0 ==> tmp; +} + + +procedure Test5(A: bool) +{ + var {:assumption} a0: bool; + var tmp0, tmp1: bool; + + a0 := a0 && A; + tmp0 := a0; + + havoc a0; + + assert a0 ==> tmp0; + + tmp1 := a0; + + havoc a0; + + assert a0 ==> tmp1; +} |