From 509c706fecd8075d6d8ecd3ff3f12346ea3c6fb3 Mon Sep 17 00:00:00 2001 From: YACOVM Date: Fri, 5 May 2017 16:22:56 +0300 Subject: [PATCH] [FAB-3679] Disable brittle TestConnectToAnchorPeers This test fails from time to time, and I am going to restructure the logic that this test tests as part of https://jira.hyperledger.org/browse/FAB-3109 so most likely would also need to change the test itself. Disabling the test in the meantime, and it will be introduced later when it will be more stable. Change-Id: I8b20a308a7ef60b11f9e7965f8b6ee7380fcf1e8 Signed-off-by: Yacov Manevich --- gossip/gossip/gossip_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gossip/gossip/gossip_test.go b/gossip/gossip/gossip_test.go index 212c6e685a7..e1645b29a74 100644 --- a/gossip/gossip/gossip_test.go +++ b/gossip/gossip/gossip_test.go @@ -53,7 +53,7 @@ func init() { discovery.SetAliveExpirationCheckInterval(aliveTimeInterval) discovery.SetAliveExpirationTimeout(aliveTimeInterval * 10) discovery.SetReconnectInterval(aliveTimeInterval) - testWG.Add(7) + testWG.Add(6) factory.InitFactories(nil) identityExpirationCheckInterval = time.Second } @@ -359,6 +359,7 @@ func TestPull(t *testing.T) { } func TestConnectToAnchorPeers(t *testing.T) { + t.Skip() t.Parallel() // Scenario: spawn 10 peers, and have them join a channel // of 3 anchor peers that don't exist yet.