[tor-commits] [tor/master] test_confparse: verify that clearing a routerset sets it to NULL.

asn at torproject.org asn at torproject.org
Tue Sep 3 14:11:59 UTC 2019


commit 1ef084c5fcc5f9185f05a71e7ca09fd88cfb641c
Author: Nick Mathewson <nickm at torproject.org>
Date:   Wed Aug 28 12:28:17 2019 -0400

    test_confparse: verify that clearing a routerset sets it to NULL.
---
 src/test/test_confparse.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/test/test_confparse.c b/src/test/test_confparse.c
index ec018f0c5..4df275fc3 100644
--- a/src/test/test_confparse.c
+++ b/src/test/test_confparse.c
@@ -592,6 +592,10 @@ test_confparse_reset(void *arg)
   config_reset_line(&test_fmt, tst, "interval", 1);
   tt_int_op(tst->interval, OP_EQ, 10);
 
+  tt_ptr_op(tst->routerset, OP_NE, NULL);
+  config_reset_line(&test_fmt, tst, "routerset", 0);
+  tt_ptr_op(tst->routerset, OP_EQ, NULL);
+
  done:
   config_free(&test_fmt, tst);
 }





More information about the tor-commits mailing list