From 5fbe75ed26c5cd79e2c1ada2397bcfb6d36b61a5 Mon Sep 17 00:00:00 2001 From: theohax <81556890+theohax@users.noreply.github.com> Date: Mon, 22 Nov 2021 13:05:05 +0200 Subject: [PATCH] Disable intermittently failing UT node.vote_by_hash_republish (#3556) --- nano/core_test/node.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nano/core_test/node.cpp b/nano/core_test/node.cpp index 88342b2479..6b13aca79e 100644 --- a/nano/core_test/node.cpp +++ b/nano/core_test/node.cpp @@ -2993,7 +2993,11 @@ TEST (node, vote_by_hash_bundle) ASSERT_TIMELY (20s, max_hashes.load () >= 3); } -TEST (node, vote_by_hash_republish) +// Test disabled because it's failing intermittently. +// PR in which it got disabled: https://github.com/nanocurrency/nano-node/pull/3556 +// Issue for investigating it: https://github.com/nanocurrency/nano-node/issues/3557 +// CI run in which it failed: https://github.com/nanocurrency/nano-node/runs/4278407269?check_suite_focus=true#step:6:1144 +TEST (node, DISABLED_vote_by_hash_republish) { nano::system system{ 2 }; auto & node1 = *system.nodes[0];