Skip to content

Commit 9f68f1b

Browse files
committed
Restore test_node_counter_consistency testing in fuzzing
In 3145168 we disabled `test_node_counter_consistency` in debug builds since it can make make things very slow, including `lightning-rapid-gossip-sync` tests. We should, however, have kept it when fuzzing, since that gives us testing of potential coverage gaps in normal tests.
1 parent 34fa21b commit 9f68f1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/routing/gossip.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1786,7 +1786,7 @@ where
17861786
}
17871787

17881788
fn test_node_counter_consistency(&self) {
1789-
#[cfg(test)]
1789+
#[cfg(any(test, fuzzing))]
17901790
{
17911791
let channels = self.channels.read().unwrap();
17921792
let nodes = self.nodes.read().unwrap();

0 commit comments

Comments
 (0)