diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-02 18:16:30 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-02 18:16:30 +0800 |
commit | b619b244c7c4c36215d805beac3a954b7966c9a4 (patch) | |
tree | 29f110fd8923db58b80a8420162794e07e1e1ceb | |
parent | a4dc12f12c7a06f5e28d5b1e760249875ef7a8c5 (diff) | |
download | dexon-b619b244c7c4c36215d805beac3a954b7966c9a4.tar dexon-b619b244c7c4c36215d805beac3a954b7966c9a4.tar.gz dexon-b619b244c7c4c36215d805beac3a954b7966c9a4.tar.bz2 dexon-b619b244c7c4c36215d805beac3a954b7966c9a4.tar.lz dexon-b619b244c7c4c36215d805beac3a954b7966c9a4.tar.xz dexon-b619b244c7c4c36215d805beac3a954b7966c9a4.tar.zst dexon-b619b244c7c4c36215d805beac3a954b7966c9a4.zip |
Fixed tests
-rw-r--r-- | core/chain_manager_test.go | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/core/chain_manager_test.go b/core/chain_manager_test.go index 108718901..1e0ec3436 100644 --- a/core/chain_manager_test.go +++ b/core/chain_manager_test.go @@ -27,6 +27,9 @@ func init() { ethutil.ReadConfig("/tmp/ethtest", "/tmp/ethtest", "ETH") +} + +func reset() { db, err := ethdb.NewMemDatabase() if err != nil { panic("Could not create mem-db, failing") @@ -51,20 +54,21 @@ func loadChain(fn string, t *testing.T) (types.Blocks, error) { func insertChain(done chan bool, chainMan *ChainManager, chain types.Blocks, t *testing.T) { err := chainMan.InsertChain(chain) - done <- true if err != nil { fmt.Println(err) t.FailNow() } + done <- true } func TestChainInsertions(t *testing.T) { + reset() + chain1, err := loadChain("valid1", t) if err != nil { fmt.Println(err) t.FailNow() } - fmt.Println(len(chain1)) chain2, err := loadChain("valid2", t) if err != nil { @@ -98,6 +102,8 @@ func TestChainInsertions(t *testing.T) { } func TestChainMultipleInsertions(t *testing.T) { + reset() + const max = 4 chains := make([]types.Blocks, max) var longest int @@ -114,7 +120,6 @@ func TestChainMultipleInsertions(t *testing.T) { t.FailNow() } } - var eventMux event.TypeMux chainMan := NewChainManager(&eventMux) txPool := NewTxPool(chainMan, &eventMux) @@ -122,7 +127,9 @@ func TestChainMultipleInsertions(t *testing.T) { chainMan.SetProcessor(blockMan) done := make(chan bool, max) for i, chain := range chains { - var i int = i + // XXX the go routine would otherwise reference the same (chain[3]) variable and fail + i := i + chain := chain go func() { insertChain(done, chainMan, chain, t) fmt.Println(i, "done") |