[tor-commits] [tor/master] Fix unit test behavior: we need to be in STATE_LIVE.

nickm at torproject.org nickm at torproject.org
Thu Nov 9 14:30:47 UTC 2017


commit 6ea3db6fa776e2b2b9d3f4da377a6ceaea0a323f
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu Nov 9 09:30:43 2017 -0500

    Fix unit test behavior: we need to be in STATE_LIVE.
---
 src/test/test_routerlist.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/test/test_routerlist.c b/src/test/test_routerlist.c
index 05d0820d8..fd29e8f17 100644
--- a/src/test/test_routerlist.c
+++ b/src/test/test_routerlist.c
@@ -5,11 +5,12 @@
 #include <math.h>
 #include <time.h>
 
+#define CONNECTION_PRIVATE
+#define DIRECTORY_PRIVATE
 #define DIRVOTE_PRIVATE
 #define ENTRYNODES_PRIVATE
-#define DIRECTORY_PRIVATE
+#define HIBERNATE_PRIVATE
 #define NETWORKSTATUS_PRIVATE
-#define CONNECTION_PRIVATE
 #define ROUTERLIST_PRIVATE
 #define TOR_UNIT_TESTING
 #include "or.h"
@@ -20,6 +21,7 @@
 #include "directory.h"
 #include "dirvote.h"
 #include "entrynodes.h"
+#include "hibernate.h"
 #include "microdesc.h"
 #include "networkstatus.h"
 #include "nodelist.h"
@@ -453,6 +455,8 @@ test_directory_guard_fetch_with_no_dirinfo(void *arg)
 
   (void) arg;
 
+  hibernate_set_state_for_testing_(HIBERNATE_STATE_LIVE);
+
   /* Initialize the SRV subsystem */
   MOCK(get_my_v3_authority_cert, get_my_v3_authority_cert_m);
   mock_cert = authority_cert_parse_from_string(AUTHORITY_CERT_1, NULL);



More information about the tor-commits mailing list