diff options
author | Nick Mathewson <nickm@torproject.org> | 2021-06-26 10:04:38 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2021-06-26 10:04:38 -0400 |
commit | 45c8d69cbbde06cc8046e7f1fce25a5aee049d4e (patch) | |
tree | 0120c5fd073ae55b2d3531a02c2e626979059dde /src/test | |
parent | 2c00ad36cd6808423821fc32a072a7f16e8509e5 (diff) | |
parent | 83483bd4f6326b519871208b3e5af4ae01f13179 (diff) | |
download | tor-45c8d69cbbde06cc8046e7f1fce25a5aee049d4e.tar.gz tor-45c8d69cbbde06cc8046e7f1fce25a5aee049d4e.zip |
Merge branch 'maint-0.4.5' into maint-0.4.6
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_address_set.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/test_address_set.c b/src/test/test_address_set.c index 1aacc58c4f..6860906791 100644 --- a/src/test/test_address_set.c +++ b/src/test/test_address_set.c @@ -17,6 +17,7 @@ #include "feature/nodelist/routerstatus_st.h" #include "test/test.h" +#include "test/rng_test_helpers.h" static networkstatus_t *dummy_ns = NULL; static networkstatus_t * @@ -62,6 +63,10 @@ test_contains(void *arg) tor_addr_parse(&addr_v4, "42.42.42.42"); uint32_t ipv4h = tor_addr_to_ipv4h(&addr_v4); + /* Use our deterministic RNG since the address set uses a bloom filter + * internally. */ + testing_enable_deterministic_rng(); + /* Make it very big so the chance of failing the contain test will be * extremely rare. */ set = address_set_new(1024); @@ -89,6 +94,8 @@ test_contains(void *arg) done: address_set_free(set); + + testing_disable_deterministic_rng(); } static void @@ -108,6 +115,10 @@ test_nodelist(void *arg) MOCK(dirlist_add_trusted_dir_addresses, mock_dirlist_add_trusted_dir_addresses); + /* Use our deterministic RNG since the address set, used for + * nodelist_probably_contains_address() uses a bloom filter internally. */ + testing_enable_deterministic_rng(); + dummy_ns = tor_malloc_zero(sizeof(*dummy_ns)); dummy_ns->flavor = FLAV_MICRODESC; dummy_ns->routerstatus_list = smartlist_new(); @@ -179,6 +190,8 @@ test_nodelist(void *arg) UNMOCK(networkstatus_get_latest_consensus_by_flavor); UNMOCK(get_estimated_address_per_node); UNMOCK(dirlist_add_trusted_dir_addresses); + + testing_disable_deterministic_rng(); } /** Test that the no-reentry exit filter works as intended */ |