Skip to content

Commit

Permalink
wrong test condition
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMichaelPetter committed Dec 17, 2024
1 parent 18effef commit ba198c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/regression/77-lin2vareq/36-refinement-oppositebounds.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ int main()
int x;
if(x<100)
{
__goblint_check(x<100); //SUCCESS
x=x;
}
__goblint_check(x<100); //UNKNOWN
__goblint_check(x>=-2147483647); //FAIL
__goblint_check(x>=-2147483647); //UNKNOWN
return 0;
}

Expand Down

0 comments on commit ba198c9

Please sign in to comment.