From 89f20924f38007b08829dcf5cb541def21029353 Mon Sep 17 00:00:00 2001 From: YACOVM Date: Fri, 9 Jun 2017 19:38:02 +0300 Subject: [PATCH] [FAB-4503] Disable brittle tests - deliveryService 1) Disable TestCloseWhileRecv as it sometimes times out 2) TestDisconnect - This test was merged today but it seems like it sometimes fails. Disabling for now, to investigate offline Change-Id: I8e1b38b851d93512d2ea1c7925e5dc518987e76b Signed-off-by: Yacov Manevich --- core/deliverservice/client_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/deliverservice/client_test.go b/core/deliverservice/client_test.go index c024275fe0e..138b4d2752a 100644 --- a/core/deliverservice/client_test.go +++ b/core/deliverservice/client_test.go @@ -471,6 +471,7 @@ func testGreenPath(t *testing.T, bdc blocksDelivererConsumer) { } func TestCloseWhileRecv(t *testing.T) { + t.Skip() // Scenario: Recv is being called and after a while, // the connection is closed. // The Recv should return immediately in such a case @@ -599,6 +600,7 @@ func TestProductionUsage(t *testing.T) { } func TestDisconnect(t *testing.T) { + t.Skip() // Scenario: spawn 2 ordering service instances // and a client. // Have the client try to Recv() from one of them,