aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vm_test_util.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/vm_test_util.go')
-rw-r--r--tests/vm_test_util.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vm_test_util.go b/tests/vm_test_util.go
index 28e0c3f40..4145d1ebf 100644
--- a/tests/vm_test_util.go
+++ b/tests/vm_test_util.go
@@ -10,6 +10,7 @@ import (
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/ethdb"
+ "github.com/ethereum/go-ethereum/logger/glog"
)
func RunVmTest(p string) error {
@@ -26,7 +27,7 @@ func RunVmTest(p string) error {
for name, test := range tests {
if skipTest[name] {
- fmt.Println("Skipping state test", name)
+ glog.Infoln("Skipping VM test", name)
return nil
}
db, _ := ethdb.NewMemDatabase()
@@ -102,8 +103,7 @@ func RunVmTest(p string) error {
}
}
- fmt.Println("VM test passed: ", name)
-
+ glog.Infoln("VM test passed: ", name)
//fmt.Println(string(statedb.Dump()))
}
return nil