aboutsummaryrefslogtreecommitdiffstats
path: root/tests/state_test_util.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/state_test_util.go')
-rw-r--r--tests/state_test_util.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/state_test_util.go b/tests/state_test_util.go
index cd87ee75e..ad14168c7 100644
--- a/tests/state_test_util.go
+++ b/tests/state_test_util.go
@@ -12,6 +12,7 @@ import (
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethdb"
+ "github.com/ethereum/go-ethereum/logger/glog"
)
func RunStateTest(p string) error {
@@ -25,7 +26,7 @@ func RunStateTest(p string) error {
for name, test := range tests {
if skipTest[name] {
- fmt.Println("Skipping state test", name)
+ glog.Infoln("Skipping state test", name)
return nil
}
db, _ := ethdb.NewMemDatabase()
@@ -105,7 +106,7 @@ func RunStateTest(p string) error {
}
}
- fmt.Println("State test passed: ", name)
+ glog.Infoln("State test passed: ", name)
//fmt.Println(string(statedb.Dump()))
}
return nil