node/tests: mark leaf-nonrouting handshake test as parallel-load flake-class

The XX leaf-nonrouting rejection test shares the localhost-UDP rcvbuf
overflow failure mode of the other large-network tests under parallel
cargo test --lib load. Mark it #[ignore] for the default run; it stays
runnable with --ignored or --test-threads=1.
This commit is contained in:
Johnathan Corgan
2026-05-28 20:19:50 +00:00
parent a6e4481c1f
commit 8e72326ec2
+1
View File
@@ -1036,6 +1036,7 @@ async fn test_nonrouting_leaf_rejected() {
}
#[tokio::test]
#[ignore = "parallel-load flake class — re-enable when fixed (run solo with --ignored or --test-threads=1 in the meantime)"]
async fn test_leaf_nonrouting_rejected() {
use crate::protocol::NodeProfile;
let (a, b) = attempt_profile_handshake(NodeProfile::Leaf, NodeProfile::NonRouting).await;