We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c5ac8 commit 3e2ad1cCopy full SHA for 3e2ad1c
regression/cbmc-incr-oneloop/ignore-before-unwind/main.c
@@ -0,0 +1,14 @@
1
+int main()
2
+{
3
+ __CPROVER_bool assumption = (__CPROVER_bool)0;
4
+ __CPROVER_bool property = (__CPROVER_bool)1;
5
+
6
+ while(1)
7
+ {
8
+ __CPROVER_assume(property == 1);
9
+ assumption = 1;
10
+ property = 0;
11
+ __CPROVER_assert(property == 1, "property");
12
+ }
13
+ return 0;
14
+}
regression/cbmc-incr-oneloop/ignore-before-unwind/test.desc
@@ -0,0 +1,9 @@
+KNOWNBUG
+main.c
+--ignore-properties-before-unwind-min --incremental-loop main.0 --no-unwinding-assertions --max-node-refinement 1 --unwind-max 2
+^EXIT=10$
+^SIGNAL=0$
+^\[main.assertion.\d+\] line \d+ property: FAILURE$
+^VERIFICATION FAILED$
+--
+^warning: ignoring
0 commit comments