Merge branch 'fix-changelogs' into 'main'
[tor.git] / scripts / coccinelle / test_assert_int.cocci
blob80e86b4f3c651e6ecfba827598527f88022dd589
1 @@
2 int e;
3 constant c;
4 @@
7 - tt_assert(e == c)
8 + tt_int_op(e, OP_EQ, c)
10 - tt_assert(e != c)
11 + tt_int_op(e, OP_NE, c)
13 - tt_assert(e < c)
14 + tt_int_op(e, OP_LT, c)
16 - tt_assert(e <= c)
17 + tt_int_op(e, OP_LE, c)
19 - tt_assert(e > c)
20 + tt_int_op(e, OP_GT, c)
22 - tt_assert(e >= c)
23 + tt_int_op(e, OP_GE, c)
27 unsigned int e;
28 constant c;
32 - tt_assert(e == c)
33 + tt_uint_op(e, OP_EQ, c)
35 - tt_assert(e != c)
36 + tt_uint_op(e, OP_NE, c)
38 - tt_assert(e < c)
39 + tt_uint_op(e, OP_LT, c)
41 - tt_assert(e <= c)
42 + tt_uint_op(e, OP_LE, c)
44 - tt_assert(e > c)
45 + tt_uint_op(e, OP_GT, c)
47 - tt_assert(e >= c)
48 + tt_uint_op(e, OP_GE, c)