mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
test_confparse: verify that clearing a routerset sets it to NULL.
This commit is contained in:
parent
f0c1f96adc
commit
1ef084c5fc
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue