You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---
test-case: simple infinite loop, less thanoptions: ["termination"]pre: []code:
<start>: | r0 = 0 if r0 < 1 goto <start> exitpost: []messages:
- "1:2: Code is unreachable after 1:2"# Message that should be generated by the verifier, but isn't:# - "Could not prove termination."
---
test-case: simple infinite loop, less than or equaloptions: ["termination"]pre: []code:
<start>: | r0 = 0 if r0 <= 1 goto <start> exitpost: []messages:
- "1:2: Code is unreachable after 1:2"# Message that should be generated by the verifier, but isn't:# - "Could not prove termination."
---
test-case: simple infinite loop, equaloptions: ["termination"]pre: []code:
<start>: | r0 = 0 if r0 == 0 goto <start> exitpost: []messages:
- "1:2: Code is unreachable after 1:2"# Message that should be generated by the verifier, but isn't:# - "Could not prove termination."
---
test-case: simple infinite loop, greater thanoptions: ["termination"]pre: []code:
<start>: | r0 = 1 if r0 > 0 goto <start> exitpost: []messages:
- "1:2: Code is unreachable after 1:2"# Message that should be generated by the verifier, but isn't:# - "Could not prove termination."
---
test-case: simple infinite loop, greater than or equaloptions: ["termination"]pre: []code:
<start>: | r0 = 1 if r0 >= 0 goto <start> exitpost: []messages:
- "1:2: Code is unreachable after 1:2"# Message that should be generated by the verifier, but isn't:# - "Could not prove termination."
The text was updated successfully, but these errors were encountered:
All these tests should fail, but currently pass:
The text was updated successfully, but these errors were encountered: