aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-13 01:22:56 +0800
committerobscuren <geffobscura@gmail.com>2015-03-13 01:22:56 +0800
commitfb71c9f6eeb80a5d7c9ad495e54af8ec923602ca (patch)
tree455471bf430c68566e8b5ffac7520ebcec95b819 /cmd
parent83cc08f67060faf9c53bd1f81b69a68c6311d345 (diff)
downloadgo-tangerine-fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca.tar
go-tangerine-fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca.tar.gz
go-tangerine-fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca.tar.bz2
go-tangerine-fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca.tar.lz
go-tangerine-fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca.tar.xz
go-tangerine-fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca.tar.zst
go-tangerine-fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca.zip
Return 1 on fail
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethtest/main.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go
index e929d1de8..7c4a727f6 100644
--- a/cmd/ethtest/main.go
+++ b/cmd/ethtest/main.go
@@ -136,6 +136,7 @@ func RunVmTest(r io.Reader) (failed int) {
rexp := helper.FromHex(test.Out)
if bytes.Compare(rexp, ret) != 0 {
fmt.Printf("%s's return failed. Expected %x, got %x\n", name, rexp, ret)
+ failed = 1
}
for addr, account := range test.Post {
@@ -147,6 +148,7 @@ func RunVmTest(r io.Reader) (failed int) {
if len(test.Exec) == 0 {
if obj.Balance().Cmp(ethutil.Big(account.Balance)) != 0 {
fmt.Printf("%s's : (%x) balance failed. Expected %v, got %v => %v\n", name, obj.Address()[:4], account.Balance, obj.Balance(), new(big.Int).Sub(ethutil.Big(account.Balance), obj.Balance()))
+ failed = 1
}
}
@@ -156,17 +158,20 @@ func RunVmTest(r io.Reader) (failed int) {
if bytes.Compare(v, vexp) != 0 {
fmt.Printf("%s's : (%x: %s) storage failed. Expected %x, got %x (%v %v)\n", name, obj.Address()[0:4], addr, vexp, v, ethutil.BigD(vexp), ethutil.BigD(v))
+ failed = 1
}
}
}
if !bytes.Equal(ethutil.Hex2Bytes(test.PostStateRoot), statedb.Root()) {
fmt.Printf("%s's : Post state root error. Expected %s, got %x", name, test.PostStateRoot, statedb.Root())
+ failed = 1
}
if len(test.Logs) > 0 {
if len(test.Logs) != len(logs) {
fmt.Printf("log length mismatch. Expected %d, got %d", len(test.Logs), len(logs))
+ failed = 1
} else {
/*
fmt.Println("A", test.Logs)