Skip to content

Commit 7572497

Browse files
committed
Fix test 82/04: remove negative case
1 parent 1a91892 commit 7572497

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/regression/82-widening_gas/04-side_simple_update.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// PARAM: --set solvers.td3.side_widen always --set solvers.td3.side_widen_gas 2 --enable ana.int.interval --enable exp.earlyglobs
1+
// PARAM: --set solvers.td3.side_widen always --set solvers.td3.side_widen_gas 3 --enable ana.int.interval --enable exp.earlyglobs
22
#include <pthread.h>
33
#include <goblint.h>
44

@@ -34,7 +34,7 @@ int main(void) {
3434
pthread_mutex_lock(&A);
3535
__goblint_check(a <= 1);
3636
__goblint_check(b <= 2);
37-
__goblint_check(c <= 4); // UNKNOWN!
37+
__goblint_check(c <= 3);
3838
pthread_mutex_unlock(&A);
3939
return 0;
4040
}

0 commit comments

Comments
 (0)