diff options
author | George Kadianakis <desnacked@riseup.net> | 2015-01-15 14:42:10 +0000 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2015-01-15 14:43:58 +0000 |
commit | 25e7821bb1b558746e606637c8e13757eb8b99ae (patch) | |
tree | 1c7779cf0a3fbb92b7ec957ff805a963fdbb282e /src | |
parent | 45bc5a07434376c0d801a547b38893d85a515b49 (diff) | |
download | tor-25e7821bb1b558746e606637c8e13757eb8b99ae.tar.gz tor-25e7821bb1b558746e606637c8e13757eb8b99ae.zip |
unittests: Change some tt_assert()s to tt_int_op()s.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/test_util.c | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c index 75727a4bcc..0d45a0bb6b 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -4614,26 +4614,26 @@ test_util_round_to_next_multiple_of(void *arg) { (void)arg; - tt_assert(round_uint64_to_next_multiple_of(0,1) == 0); - tt_assert(round_uint64_to_next_multiple_of(0,7) == 0); + tt_int_op(round_uint64_to_next_multiple_of(0,1), ==, 0); + tt_int_op(round_uint64_to_next_multiple_of(0,7), ==, 0); - tt_assert(round_uint64_to_next_multiple_of(99,1) == 99); - tt_assert(round_uint64_to_next_multiple_of(99,7) == 105); - tt_assert(round_uint64_to_next_multiple_of(99,9) == 99); + tt_int_op(round_uint64_to_next_multiple_of(99,1), ==, 99); + tt_int_op(round_uint64_to_next_multiple_of(99,7), ==, 105); + tt_int_op(round_uint64_to_next_multiple_of(99,9), ==, 99); - tt_assert(round_int64_to_next_multiple_of(0,1) == 0); - tt_assert(round_int64_to_next_multiple_of(0,7) == 0); + tt_int_op(round_int64_to_next_multiple_of(0,1), ==, 0); + tt_int_op(round_int64_to_next_multiple_of(0,7), ==, 0); - tt_assert(round_int64_to_next_multiple_of(99,1) == 99); - tt_assert(round_int64_to_next_multiple_of(99,7) == 105); - tt_assert(round_int64_to_next_multiple_of(99,9) == 99); + tt_int_op(round_int64_to_next_multiple_of(99,1), ==, 99); + tt_int_op(round_int64_to_next_multiple_of(99,7), ==, 105); + tt_int_op(round_int64_to_next_multiple_of(99,9), ==, 99); - tt_assert(round_int64_to_next_multiple_of(-99,1) == -99); - tt_assert(round_int64_to_next_multiple_of(-99,7) == -98); - tt_assert(round_int64_to_next_multiple_of(-99,9) == -99); + tt_int_op(round_int64_to_next_multiple_of(-99,1), ==, -99); + tt_int_op(round_int64_to_next_multiple_of(-99,7), ==, -98); + tt_int_op(round_int64_to_next_multiple_of(-99,9), ==, -99); - tt_assert(round_int64_to_next_multiple_of(INT64_MIN,2) == INT64_MIN); - tt_assert(round_int64_to_next_multiple_of(INT64_MAX,2) == + tt_int_op(round_int64_to_next_multiple_of(INT64_MIN,2), ==, INT64_MIN); + tt_int_op(round_int64_to_next_multiple_of(INT64_MAX,2), ==, INT64_MAX-INT64_MAX%2); done: ; @@ -4665,14 +4665,15 @@ test_util_laplace(void *arg) * array([ -inf, -80.47189562, -34.65735903, 0. , * 34.65735903, 80.47189562, 195.60115027]) */ - tt_assert(INT64_MIN + 20 == + tt_int_op(INT64_MIN + 20, ==, add_laplace_noise(20, 0.0, delta_f, epsilon)); - tt_assert(-60 == add_laplace_noise(20, 0.1, delta_f, epsilon)); - tt_assert(-14 == add_laplace_noise(20, 0.25, delta_f, epsilon)); - tt_assert(20 == add_laplace_noise(20, 0.5, delta_f, epsilon)); - tt_assert(54 == add_laplace_noise(20, 0.75, delta_f, epsilon)); - tt_assert(100 == add_laplace_noise(20, 0.9, delta_f, epsilon)); - tt_assert(215 == add_laplace_noise(20, 0.99, delta_f, epsilon)); + tt_int_op(-60, ==, add_laplace_noise(20, 0.1, delta_f, epsilon)); + tt_int_op(-14, ==, add_laplace_noise(20, 0.25, delta_f, epsilon)); + tt_int_op(20, ==, add_laplace_noise(20, 0.5, delta_f, epsilon)); + tt_int_op(54, ==, add_laplace_noise(20, 0.75, delta_f, epsilon)); + tt_int_op(100, ==, add_laplace_noise(20, 0.9, delta_f, epsilon)); + tt_int_op(215, ==, add_laplace_noise(20, 0.99, delta_f, epsilon)); + done: ; } |