mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
50 lines
632 B
Plaintext
50 lines
632 B
Plaintext
|
@@
|
||
|
int e;
|
||
|
constant c;
|
||
|
@@
|
||
|
|
||
|
(
|
||
|
- tt_assert(e == c)
|
||
|
+ tt_int_op(e, OP_EQ, c)
|
||
|
|
|
||
|
- tt_assert(e != c)
|
||
|
+ tt_int_op(e, OP_NE, c)
|
||
|
|
|
||
|
- tt_assert(e < c)
|
||
|
+ tt_int_op(e, OP_LT, c)
|
||
|
|
|
||
|
- tt_assert(e <= c)
|
||
|
+ tt_int_op(e, OP_LE, c)
|
||
|
|
|
||
|
- tt_assert(e > c)
|
||
|
+ tt_int_op(e, OP_GT, c)
|
||
|
|
|
||
|
- tt_assert(e >= c)
|
||
|
+ tt_int_op(e, OP_GE, c)
|
||
|
)
|
||
|
|
||
|
@@
|
||
|
unsigned int e;
|
||
|
constant c;
|
||
|
@@
|
||
|
|
||
|
(
|
||
|
- tt_assert(e == c)
|
||
|
+ tt_uint_op(e, OP_EQ, c)
|
||
|
|
|
||
|
- tt_assert(e != c)
|
||
|
+ tt_uint_op(e, OP_NE, c)
|
||
|
|
|
||
|
- tt_assert(e < c)
|
||
|
+ tt_uint_op(e, OP_LT, c)
|
||
|
|
|
||
|
- tt_assert(e <= c)
|
||
|
+ tt_uint_op(e, OP_LE, c)
|
||
|
|
|
||
|
- tt_assert(e > c)
|
||
|
+ tt_uint_op(e, OP_GT, c)
|
||
|
|
|
||
|
- tt_assert(e >= c)
|
||
|
+ tt_uint_op(e, OP_GE, c)
|
||
|
)
|