[tor-commits] [tor/master] Conditionally disable part of dir/param_voting_lookup that expects soft asserts to happen

teor at torproject.org teor at torproject.org
Tue Mar 17 11:09:23 UTC 2020


commit 4ab20b4f63daa021df7575d6251eaca61301850b
Author: rl1987 <rl1987 at sdf.lonestar.org>
Date:   Sat Mar 14 18:51:01 2020 +0200

    Conditionally disable part of dir/param_voting_lookup that expects soft asserts to happen
---
 src/test/test_dir.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index b09c1acfe..e6f87dbd3 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -3005,6 +3005,7 @@ test_dir_param_voting_lookup(void *arg)
   tt_int_op(99, OP_EQ,
             dirvote_get_intermediate_param_value(lst, "abcd", 1000));
 
+#ifndef ALL_BUGS_ARE_FATAL
   /* moomin appears twice. That's a bug. */
   tor_capture_bugs_(1);
   tt_int_op(-100, OP_EQ,
@@ -3040,6 +3041,7 @@ test_dir_param_voting_lookup(void *arg)
   tt_str_op(smartlist_get(tor_get_captured_bug_log_(), 0), OP_EQ,
             "!(!ok)");
   tor_end_capture_bugs_();
+#endif
 
  done:
   SMARTLIST_FOREACH(lst, char *, cp, tor_free(cp));





More information about the tor-commits mailing list