commit d98f743b282a8b28ed8d2d14db3bbfee40c5e6b0 Author: Nick Mathewson nickm@torproject.org Date: Mon Mar 3 10:00:37 2014 -0500
Fix compilation warnings in tor_addr_make_null patch
There was one "missing prototype" warning because the test function wasn't static, and one "unused parameter" warning about the "data" parameter.
Also, I added a couple of tests to make sure that the "make_null" addresses really were the addresses we expected, by formatting them as strings. --- src/test/test_addr.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/test/test_addr.c b/src/test/test_addr.c index f921343..036380f 100644 --- a/src/test/test_addr.c +++ b/src/test/test_addr.c @@ -971,11 +971,13 @@ test_addr_is_loopback(void *data) ; }
-void +static void test_addr_make_null(void *data) { tor_addr_t *addr = tor_malloc(sizeof(*addr)); - tor_addr_t *zeros = tor_calloc(1, sizeof(*addr)); + tor_addr_t *zeros = tor_malloc_zero(sizeof(*addr)); + char buf[TOR_ADDR_BUF_LEN]; + (void) data; /* Ensure that before tor_addr_make_null, addr != 0's */ memset(addr, 1, sizeof(*addr)); tt_int_op(memcmp(addr, zeros, sizeof(*addr)), !=, 0); @@ -983,11 +985,13 @@ test_addr_make_null(void *data) zeros->family = AF_INET; tor_addr_make_null(addr, AF_INET); tt_int_op(memcmp(addr, zeros, sizeof(*addr)), ==, 0); + tt_str_op(tor_addr_to_str(buf, addr, sizeof(buf), 0), ==, "0.0.0.0"); /* Test with AF == AF_INET6 */ memset(addr, 1, sizeof(*addr)); zeros->family = AF_INET6; tor_addr_make_null(addr, AF_INET6); tt_int_op(memcmp(addr, zeros, sizeof(*addr)), ==, 0); + tt_str_op(tor_addr_to_str(buf, addr, sizeof(buf), 0), ==, "::"); done: tor_free(addr); tor_free(zeros);
tor-commits@lists.torproject.org