diff options
Diffstat (limited to 'tests/block_test_util.go')
-rw-r--r-- | tests/block_test_util.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/block_test_util.go b/tests/block_test_util.go index 473bc3419..144c6c15f 100644 --- a/tests/block_test_util.go +++ b/tests/block_test_util.go @@ -148,12 +148,12 @@ func runBlockTests(bt map[string]*BlockTest, skipTests []string) error { } for name, test := range bt { - // if the test should be skipped, return - if skipTest[name] { + if skipTest[name] || name != "wallet2outOf3txsRevoke" { glog.Infoln("Skipping block test", name) continue } // test the block + //fmt.Println("BlockTest name:", name) if err := runBlockTest(test); err != nil { return fmt.Errorf("%s: %v", name, err) } @@ -185,6 +185,7 @@ func runBlockTest(test *BlockTest) error { return err } cm := ethereum.BlockChain() + //vm.Debug = true validBlocks, err := test.TryBlocksInsert(cm) if err != nil { return err |