diff options
author | teor <teor@torproject.org> | 2019-03-18 11:29:20 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-03-18 11:29:20 +1000 |
commit | 55865a2c9c9929b690a4f5a969afd5d4415c40bd (patch) | |
tree | 73cc8806baa3eef720023a6b29030cfc5a51ad0d /src/test/test_shared_random.c | |
parent | 5d41e2223f64517300aad168b2f2479ba00ac10b (diff) | |
parent | aec6ee201bbf63f54bcf879de10addf00779504c (diff) | |
download | tor-55865a2c9c9929b690a4f5a969afd5d4415c40bd.tar.gz tor-55865a2c9c9929b690a4f5a969afd5d4415c40bd.zip |
Merge branch 'bug29706_034_minimal_merge' into bug29706_035_minimal_merge
Diffstat (limited to 'src/test/test_shared_random.c')
-rw-r--r-- | src/test/test_shared_random.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/test/test_shared_random.c b/src/test/test_shared_random.c index 1fb3179840..b4fe6eef64 100644 --- a/src/test/test_shared_random.c +++ b/src/test/test_shared_random.c @@ -74,6 +74,9 @@ init_authority_state(void) * the phase we are currently in which uses "now" as the starting * timestamp. Delete it before we do any testing below. */ sr_state_delete_commits(); + /* It's also possible that a current SRV has been generated, if we are at + * state transition time. But let's just forget about that SRV. */ + sr_state_clean_srvs(); done: UNMOCK(get_my_v3_authority_cert); @@ -588,12 +591,20 @@ test_encoding(void *arg) ; } -/** Setup some SRVs in our SR state. If <b>also_current</b> is set, then set - * both current and previous SRVs. - * Helper of test_vote() and test_sr_compute_srv(). */ +/** Setup some SRVs in our SR state. + * If <b>also_current</b> is set, then set both current and previous SRVs. + * Otherwise, just set the previous SRV. (And clear the current SRV.) + * + * You must call sr_state_free_all() to free the state at the end of each test + * function (on pass or fail). */ static void test_sr_setup_srv(int also_current) { + /* Clear both SRVs before starting. + * In 0.3.5 and earlier, sr_state_set_previous_srv() and + * sr_state_set_current_srv() do not free() the old srvs. */ + sr_state_clean_srvs(); + sr_srv_t *srv = tor_malloc_zero(sizeof(sr_srv_t)); srv->num_reveals = 42; memcpy(srv->value, |