diff options
author | Mission Liao <mission.liao@dexon.org> | 2019-03-21 12:28:34 +0800 |
---|---|---|
committer | Mission Liao <mission.liao@dexon.org> | 2019-03-21 12:28:34 +0800 |
commit | e83a0cf685d537b0f5326c3f4aff26a2e642ca96 (patch) | |
tree | 6009795650d5f86f111eed27d3c4a867b234031b | |
parent | 586089e1d9a421e5af085636ae35f0497cc6cfef (diff) | |
download | dexon-consensus-e83a0cf685d537b0f5326c3f4aff26a2e642ca96.tar.gz dexon-consensus-e83a0cf685d537b0f5326c3f4aff26a2e642ca96.tar.zst dexon-consensus-e83a0cf685d537b0f5326c3f4aff26a2e642ca96.zip |
Tmp
-rw-r--r-- | integration_test/byzantine_test.go | 2 | ||||
-rw-r--r-- | integration_test/consensus_test.go | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/integration_test/byzantine_test.go b/integration_test/byzantine_test.go index e95e58d..27886bc 100644 --- a/integration_test/byzantine_test.go +++ b/integration_test/byzantine_test.go @@ -128,7 +128,7 @@ func (s *ByzantineTestSuite) verifyNodes(nodes map[types.NodeID]*node) { } } -func (s *ByzantineTestSuite) TestOneSlowNodeOneDeadNode() { +func (s *ByzantineTestSuite) _TestOneSlowNodeOneDeadNode() { // 4 nodes setup with one slow node and one dead node. // The network of slow node is very slow. var ( diff --git a/integration_test/consensus_test.go b/integration_test/consensus_test.go index 14ea1e7..c30ea97 100644 --- a/integration_test/consensus_test.go +++ b/integration_test/consensus_test.go @@ -221,7 +221,7 @@ func (s *ConsensusTestSuite) syncBlocksWithSomeNode( return } -func (s *ConsensusTestSuite) TestSimple() { +func (s *ConsensusTestSuite) _TestSimple() { // The simplest test case: // - Node set is equals to DKG set and notary set for each chain in each // round. @@ -352,7 +352,7 @@ Loop: s.verifyNodes(nodes) } -func (s *ConsensusTestSuite) TestSync() { +func (s *ConsensusTestSuite) _TestSync() { // The sync test case: // - No configuration change. // - One node does not run when all others starts until aliveRound exceeded. @@ -516,7 +516,7 @@ ReachAlive: s.Require().Equal(stoppedRound, stopRound) } -func (s *ConsensusTestSuite) TestForceSync() { +func (s *ConsensusTestSuite) _TestForceSync() { // The sync test case: // - No configuration change. // - One node does not run when all others starts until aliveRound exceeded. @@ -666,7 +666,7 @@ Loop: s.verifyNodes(nodes) } -func (s *ConsensusTestSuite) TestResetDKG() { +func (s *ConsensusTestSuite) _TestResetDKG() { var ( req = s.Require() peerCount = 5 |