diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-19 22:07:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-19 22:07:33 +0800 |
commit | 554f20930abba7e55fb0dd2718a00c4bd066c973 (patch) | |
tree | 41ba92fa976a28547e4e7e43f7e80a4a4f680685 /cmd | |
parent | 8b20c3cc976a149c64ef0ac2cabbe49e93ba739d (diff) | |
parent | a756dbeb7b1027eb91130ecf8d5440dca8e738d8 (diff) | |
download | go-tangerine-554f20930abba7e55fb0dd2718a00c4bd066c973.tar go-tangerine-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.gz go-tangerine-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.bz2 go-tangerine-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.lz go-tangerine-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.xz go-tangerine-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.zst go-tangerine-554f20930abba7e55fb0dd2718a00c4bd066c973.zip |
Merge branch 'develop' into rpcfrontier
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethtest/main.go | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go index 23ae9e525..cf1ec6dfa 100644 --- a/cmd/ethtest/main.go +++ b/cmd/ethtest/main.go @@ -24,7 +24,6 @@ package main import ( "bytes" "encoding/json" - "fmt" "io" "io/ioutil" "log" @@ -33,8 +32,8 @@ import ( "strconv" "strings" - "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/state" "github.com/ethereum/go-ethereum/tests/helper" @@ -136,7 +135,7 @@ func RunVmTest(r io.Reader) (failed int) { rexp := helper.FromHex(test.Out) if bytes.Compare(rexp, ret) != 0 { - fmt.Printf("FAIL: %s's return failed. Expected %x, got %x\n", name, rexp, ret) + helper.Log.Infof("FAIL: %s's return failed. Expected %x, got %x\n", name, rexp, ret) failed = 1 } @@ -148,7 +147,13 @@ func RunVmTest(r io.Reader) (failed int) { if len(test.Exec) == 0 { if obj.Balance().Cmp(common.Big(account.Balance)) != 0 { - fmt.Printf("FAIL: %s's : (%x) balance failed. Expected %v, got %v => %v\n", name, obj.Address()[:4], account.Balance, obj.Balance(), new(big.Int).Sub(common.Big(account.Balance), obj.Balance())) + helper.Log.Infof("FAIL: %s's : (%x) balance failed. Expected %v, got %v => %v\n", + name, + obj.Address()[:4], + account.Balance, + obj.Balance(), + new(big.Int).Sub(common.Big(account.Balance), obj.Balance()), + ) failed = 1 } } @@ -158,20 +163,20 @@ func RunVmTest(r io.Reader) (failed int) { vexp := helper.FromHex(value) if bytes.Compare(v, vexp) != 0 { - fmt.Printf("FAIL: %s's : (%x: %s) storage failed. Expected %x, got %x (%v %v)\n", name, obj.Address()[0:4], addr, vexp, v, common.BigD(vexp), common.BigD(v)) + helper.Log.Infof("FAIL: %s's : (%x: %s) storage failed. Expected %x, got %x (%v %v)\n", name, obj.Address()[0:4], addr, vexp, v, common.BigD(vexp), common.BigD(v)) failed = 1 } } } if !bytes.Equal(common.Hex2Bytes(test.PostStateRoot), statedb.Root()) { - fmt.Printf("FAIL: %s's : Post state root error. Expected %s, got %x\n", name, test.PostStateRoot, statedb.Root()) + helper.Log.Infof("FAIL: %s's : Post state root error. Expected %s, got %x\n", name, test.PostStateRoot, statedb.Root()) failed = 1 } if len(test.Logs) > 0 { if len(test.Logs) != len(logs) { - fmt.Printf("FAIL: log length mismatch. Expected %d, got %d", len(test.Logs), len(logs)) + helper.Log.Infof("FAIL: log length mismatch. Expected %d, got %d", len(test.Logs), len(logs)) failed = 1 } else { /* |