[tor-commits] [tor/master] Another round of unittest massaging for tor!212.

asn at torproject.org asn at torproject.org
Mon Feb 8 13:59:06 UTC 2021


commit 177b535e7295161db3ac62641173331310ab2ea5
Author: George Kadianakis <desnacked at riseup.net>
Date:   Mon Feb 8 15:54:48 2021 +0200

    Another round of unittest massaging for tor!212.
---
 src/test/test_hs_control.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/test/test_hs_control.c b/src/test/test_hs_control.c
index 99c865c8ee..dfc1e5445e 100644
--- a/src/test/test_hs_control.c
+++ b/src/test/test_hs_control.c
@@ -800,6 +800,8 @@ test_hs_control_add_onion_helper_add_service(void *arg)
   rend_service_port_config_t *portcfg;
   smartlist_t *portcfgs;
   char *address_out_good, *address_out_bad;
+  hs_service_t *service_good = NULL;
+  hs_service_t *service_bad = NULL;
 
   (void) arg;
 
@@ -831,7 +833,7 @@ test_hs_control_add_onion_helper_add_service(void *arg)
   add_onion_helper_add_service(HS_VERSION_THREE, &sk_good, portcfgs, 1, 1,
                           REND_V3_AUTH, NULL, list_good, &address_out_good);
 
-  hs_service_t *service_good = find_service(global_map, &pk_good);
+  service_good = find_service(global_map, &pk_good);
   tt_int_op(smartlist_len(service_good->config.clients), OP_EQ, 1);
 
   hs_service_free(service_good);
@@ -846,7 +848,7 @@ test_hs_control_add_onion_helper_add_service(void *arg)
   add_onion_helper_add_service(HS_VERSION_THREE, &sk_bad, portcfgs, 1, 1,
                           REND_V3_AUTH, NULL, list_bad, &address_out_bad);
 
-  hs_service_t *service_bad = find_service(global_map, &pk_bad);
+  service_bad = find_service(global_map, &pk_bad);
 
   tt_int_op(smartlist_len(service_bad->config.clients), OP_EQ, 0);
 



More information about the tor-commits mailing list