Conditionally disable part of dir/param_voting_lookup that expects soft asserts to happen

This commit is contained in:
rl1987
2020-03-14 18:51:01 +02:00
committed by teor
parent 752122b2e9
commit 4ab20b4f63
+2
View File
@@ -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));