[tor-commits] [tor/master] Put expected first in n_bits_set_u8 unit tests

nickm at torproject.org nickm at torproject.org
Fri Mar 9 16:30:59 UTC 2012


commit 3e4a977781fe0ae85ec9677e9496de5451e5c824
Author: Esteban Manchado Velázquez <emanchado at demiurgo.org>
Date:   Sat Feb 11 01:20:09 2012 +0100

    Put expected first in n_bits_set_u8 unit tests
---
 src/test/test_util.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/test/test_util.c b/src/test/test_util.c
index a7554a4..809039b 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -2214,10 +2214,12 @@ static void
 test_util_n_bits_set(void *ptr)
 {
   (void)ptr;
-  test_eq(n_bits_set_u8(0), 0);
-  test_eq(n_bits_set_u8(1), 1);
-  test_eq(n_bits_set_u8(129), 2);
-  test_eq(n_bits_set_u8(255), 8);
+  test_eq(0, n_bits_set_u8(0));
+  test_eq(1, n_bits_set_u8(1));
+  test_eq(3, n_bits_set_u8(7));
+  test_eq(1, n_bits_set_u8(8));
+  test_eq(2, n_bits_set_u8(129));
+  test_eq(8, n_bits_set_u8(255));
  done:
   ;
 }





More information about the tor-commits mailing list