Skip to content

Commit ba198c9

Browse files
wrong test condition
1 parent 18effef commit ba198c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/regression/77-lin2vareq/36-refinement-oppositebounds.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ int main()
99
int x;
1010
if(x<100)
1111
{
12+
__goblint_check(x<100); //SUCCESS
1213
x=x;
1314
}
14-
__goblint_check(x<100); //UNKNOWN
15-
__goblint_check(x>=-2147483647); //FAIL
15+
__goblint_check(x>=-2147483647); //UNKNOWN
1616
return 0;
1717
}
1818

0 commit comments

Comments
 (0)