Skip to content

Commit

Permalink
Disable TestRestartAfterCheckpoint Test
Browse files Browse the repository at this point in the history
The TestRestartAfterCheckpoint test exhibits intermittent failures which
is causing problems in CI and erroneously flagging builds as failed
which should otherwise pass.  This changeset disables that test until a
more permanent solution can be found.

This is related to, (though does not resolve) JIRA issue:

https://jira.hyperledger.org/browse/FAB-624

Change-Id: Ic583758130218104f78b6b5bcc439dcfbc6339df
Signed-off-by: Jason Yellick <jyellick@us.ibm.com>
  • Loading branch information
Jason Yellick committed Oct 19, 2016
1 parent 85f7b01 commit 7fb0f1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions consensus/simplebft/simplebft_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,8 @@ func TestRestartAfterCommit(t *testing.T) {
}

func TestRestartAfterCheckpoint(t *testing.T) {
// TODO re-enable this test after https://jira.hyperledger.org/browse/FAB-624 has been resolved
t.Skip()
N := uint64(4)
sys := newTestSystem(N)
var repls []*SBFT
Expand Down

0 comments on commit 7fb0f1f

Please sign in to comment.