]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix unearthed problems in unit tests
authorNick Mathewson <nickm@torproject.org>
Thu, 8 May 2014 17:16:08 +0000 (13:16 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 8 May 2014 17:16:08 +0000 (13:16 -0400)
src/test/test_buffers.c
src/test/test_util.c

index 78b3aead609412c52fc71f16a642d0e4c94d8206..61ac5bc36b81410249d75be619522dac2f77d297 100644 (file)
@@ -663,8 +663,6 @@ test_buffers_zlib_fin_with_nil(void *arg)
 static void
 test_buffers_zlib_fin_at_chunk_end(void *arg)
 {
-  (void) arg;
-
   char *msg = NULL;
   char *contents = NULL;
   char *expanded = NULL;
@@ -672,6 +670,7 @@ test_buffers_zlib_fin_at_chunk_end(void *arg)
   tor_zlib_state_t *zlib_state = NULL;
   size_t out_len, in_len;
   size_t sz, headerjunk;
+  (void) arg;
 
   buf = buf_new_with_capacity(128); /* will round up */
   sz = buf_get_default_chunk_size(buf);
index e21f5aa613b84e7323afa09825ae4bb1376a25ec..2c29429b898b5265f61bb60ca8d64b50c637039d 100644 (file)
@@ -1291,10 +1291,10 @@ test_util_pow2(void)
   test_eq(round_to_power_of_2(120), 128);
   test_eq(round_to_power_of_2(128), 128);
   test_eq(round_to_power_of_2(130), 128);
-  test_eq(round_to_power_of_2(U64_LITERAL(40000000000000000)),
-          U64_LITERAL(1)<<55);
-  test_eq(round_to_power_of_2(U64_LITERAL(0xffffffffffffffff)),
-          U64_LITERAL(1)<<63);
+  test_assert(round_to_power_of_2(U64_LITERAL(40000000000000000)) ==
+              U64_LITERAL(1)<<55);
+  test_assert(round_to_power_of_2(U64_LITERAL(0xffffffffffffffff)) ==
+              U64_LITERAL(1)<<63);
   test_eq(round_to_power_of_2(0), 1);
   test_eq(round_to_power_of_2(1), 1);
   test_eq(round_to_power_of_2(2), 2);