mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Make the fp_pair_map tests cover {get,set}_by_digests
This commit is contained in:
parent
d00a26f860
commit
bb7288b2c3
@ -1106,7 +1106,7 @@ test_container_fp_pair_map(void *arg)
|
||||
tt_int_op(fp_pair_map_size(map),OP_EQ, 4);
|
||||
fp_pair_map_assert_ok(map);
|
||||
fp_pair_map_set(map, &fp5, v104);
|
||||
fp_pair_map_set(map, &fp6, v105);
|
||||
fp_pair_map_set_by_digests(map, fp6.first, fp6.second, v105);
|
||||
fp_pair_map_assert_ok(map);
|
||||
|
||||
/* Test iterator. */
|
||||
@ -1124,7 +1124,8 @@ test_container_fp_pair_map(void *arg)
|
||||
|
||||
/* Make sure we removed fp2, but not the others. */
|
||||
tt_ptr_op(fp_pair_map_get(map, &fp2),OP_EQ, NULL);
|
||||
tt_ptr_op(fp_pair_map_get(map, &fp5),OP_EQ, v104);
|
||||
tt_ptr_op(fp_pair_map_get_by_digests(map, fp5.first, fp5.second),
|
||||
OP_EQ, v104);
|
||||
|
||||
fp_pair_map_assert_ok(map);
|
||||
/* Clean up after ourselves. */
|
||||
|
Loading…
Reference in New Issue
Block a user