From 791625750ef0c81b035b5c5c91ff9ab8a256df97 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Fri, 4 Nov 2016 14:30:25 -0400 Subject: [PATCH] prop224: Remove pointless unit test Signed-off-by: David Goulet --- src/test/test_hs_descriptor.c | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/src/test/test_hs_descriptor.c b/src/test/test_hs_descriptor.c index e406a809bf..47e7037b66 100644 --- a/src/test/test_hs_descriptor.c +++ b/src/test/test_hs_descriptor.c @@ -912,32 +912,6 @@ test_decode_multiple_intro_points(void *arg) ; } -static void -test_free_objects(void *arg) -{ - (void) arg; - - { - const char u[] = { 'U', 'U', 'U', 'U' }; - hs_desc_plaintext_data_t *data = tor_malloc_zero(sizeof(*data)); - /* Set a memory marker so we know if the data was properly wiped. */ - memset(&data->version, 'U', sizeof(data->version)); - hs_desc_plaintext_data_free(data); - tt_mem_op(&data->version, OP_NE, u, sizeof(u)); - } - - { - hs_desc_encrypted_data_t *data = tor_malloc_zero(sizeof(*data)); - /* Set a memory marker so we know if the data was properly wiped. */ - data->create2_ntor = 1; - hs_desc_encrypted_data_free(data); - tt_int_op(data->create2_ntor, OP_NE, 1); - } - - done: - ; -} - static void test_decode_plaintext(void *arg) { @@ -1133,8 +1107,6 @@ struct testcase_t hs_descriptor[] = { /* Misc. */ { "version", test_supported_version, TT_FORK, NULL, NULL }, - { "free_objects", test_free_objects, TT_FORK, - NULL, NULL }, { "validate_cert", test_validate_cert, TT_FORK, NULL, NULL }, { "desc_signature", test_desc_signature, TT_FORK,