]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Make unit tests work.
authorMike Perry <mikeperry-git@fscked.org>
Wed, 24 Feb 2010 19:17:31 +0000 (11:17 -0800)
committerMike Perry <mikeperry-git@fscked.org>
Wed, 24 Feb 2010 19:17:31 +0000 (11:17 -0800)
Still not sure why they generate an empty consensus document..
Too much frobbing going on there.

src/or/dirvote.c

index 50c6261eb68706968fb591a92e1df8288fdcef49..607ea8f5ff59484695085f34dca99e43a3713848 100644 (file)
@@ -751,6 +751,14 @@ networkstatus_compute_bw_weights_v9(smartlist_t *chunks, int64_t G, int64_t M,
   char buf[512];
   int r;
 
+  if (G <= 0 || M <= 0 || E <= 0 || D <= 0) {
+    log_warn(LD_DIR, "Consensus with empty bandwidth: "
+                     "G="I64_FORMAT" M="I64_FORMAT" E="I64_FORMAT
+                     " D="I64_FORMAT" T="I64_FORMAT,
+                     G, M, E, D, T);
+    return;
+  }
+
   /*
    * Computed from cases in 3.4.3 of dir-spec.txt
    *