diff options
author | David Goulet <dgoulet@torproject.org> | 2021-02-24 13:55:21 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2021-02-24 13:55:21 -0500 |
commit | 6ea7eb58c697d9e02090f63687803e921bc7c13f (patch) | |
tree | 3e597aae5010770b858753cabe69cb4c206f5f84 /src/test | |
parent | 97e51dd01b228ecb72c912c6cf3ffae6334c8d07 (diff) | |
parent | 39d0f69dfee86c4f8703094990d3169fb20614f3 (diff) | |
download | tor-6ea7eb58c697d9e02090f63687803e921bc7c13f.tar.gz tor-6ea7eb58c697d9e02090f63687803e921bc7c13f.zip |
Merge branch 'tor-gitlab/mr/321' into maint-0.4.5
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_config.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/test_config.c b/src/test/test_config.c index 73c8ca0549..655535f704 100644 --- a/src/test/test_config.c +++ b/src/test/test_config.c @@ -3982,27 +3982,6 @@ test_config_directory_fetch(void *arg) tt_int_op(networkstatus_consensus_can_use_multiple_directories(options), OP_EQ, 1); - /* OR servers only fetch the consensus from the authorities when they don't - * know their own address, but never use multiple directories for bootstrap - */ - or_options_free(options); - options = options_new(); - options->ORPort_set = 1; - - mock_relay_find_addr_to_publish_result = false; - tt_assert(server_mode(options) == 1); - tt_assert(public_server_mode(options) == 1); - tt_int_op(dirclient_fetches_from_authorities(options), OP_EQ, 1); - tt_int_op(networkstatus_consensus_can_use_multiple_directories(options), - OP_EQ, 0); - - mock_relay_find_addr_to_publish_result = true; - tt_assert(server_mode(options) == 1); - tt_assert(public_server_mode(options) == 1); - tt_int_op(dirclient_fetches_from_authorities(options), OP_EQ, 0); - tt_int_op(networkstatus_consensus_can_use_multiple_directories(options), - OP_EQ, 0); - /* Exit OR servers only fetch the consensus from the authorities when they * refuse unknown exits, but never use multiple directories for bootstrap */ |