commit 1ef084c5fcc5f9185f05a71e7ca09fd88cfb641c
parent f0c1f96adcc049c49f7784645a5b197c8b3e44af
Author: Nick Mathewson <nickm@torproject.org>
Date: Wed, 28 Aug 2019 12:28:17 -0400
test_confparse: verify that clearing a routerset sets it to NULL.
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git 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);
}