From fb71c9f6eeb80a5d7c9ad495e54af8ec923602ca Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 12 Mar 2015 18:22:56 +0100 Subject: Return 1 on fail --- cmd/ethtest/main.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cmd') 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) -- cgit v1.2.3