[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [tor/master] test_confparse: verify that clearing a routerset sets it to NULL.
commit 1ef084c5fcc5f9185f05a71e7ca09fd88cfb641c
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
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);
}
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits