Unskip now working tests, remove debug print

This commit is contained in:
Gustav Simonsson 2015-05-06 23:25:44 +02:00
parent 2808409fbd
commit 7bc1f487b8
2 changed files with 0 additions and 4 deletions

View File

@ -113,7 +113,6 @@ func runOneBlockTest(ctx *cli.Context, test *tests.BlockTest) (*eth.Ethereum, er
return ethereum, fmt.Errorf("Block Test load error: %v", err)
}
fmt.Println("chain loaded")
if err := test.ValidatePostState(statedb); err != nil {
return ethereum, fmt.Errorf("post state validation failed: %v", err)
}

View File

@ -17,12 +17,10 @@ func TestBcValidBlockTests(t *testing.T) {
}
func TestBcUncleTests(t *testing.T) {
t.Skip("Skipped until https://github.com/ethereum/go-ethereum/pull/857 is merged.")
runBlockTestsInFile("files/BlockTests/bcUncleTest.json", []string{}, t)
}
func TestBcUncleHeaderValidityTests(t *testing.T) {
t.Skip("Skipped until https://github.com/ethereum/go-ethereum/pull/857 is merged.")
runBlockTestsInFile("files/BlockTests/bcUncleHeaderValiditiy.json", []string{}, t)
}
@ -39,7 +37,6 @@ func TestBcJSAPITests(t *testing.T) {
}
func TestBcRPCAPITests(t *testing.T) {
t.Skip("Skipped until https://github.com/ethereum/go-ethereum/pull/857 is merged.")
runBlockTestsInFile("files/BlockTests/bcRPC_API_Test.json", []string{}, t)
}