diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-19 04:58:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-19 04:58:26 +0800 |
commit | 198cc69357a0f25ae486a041786e1239c6f5ab0f (patch) | |
tree | 39f4b8c4a8b8360d2fe2fc5583438f948e095524 /tests/vm/gh_test.go | |
parent | 5ad473d7581b92811c3a3e035274a82fc5568f57 (diff) | |
download | dexon-198cc69357a0f25ae486a041786e1239c6f5ab0f.tar dexon-198cc69357a0f25ae486a041786e1239c6f5ab0f.tar.gz dexon-198cc69357a0f25ae486a041786e1239c6f5ab0f.tar.bz2 dexon-198cc69357a0f25ae486a041786e1239c6f5ab0f.tar.lz dexon-198cc69357a0f25ae486a041786e1239c6f5ab0f.tar.xz dexon-198cc69357a0f25ae486a041786e1239c6f5ab0f.tar.zst dexon-198cc69357a0f25ae486a041786e1239c6f5ab0f.zip |
Gas corrections and vm fixes
Diffstat (limited to 'tests/vm/gh_test.go')
-rw-r--r-- | tests/vm/gh_test.go | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index da5a41251..42dcc0ae1 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -8,6 +8,7 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/ethutil" + "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/state" "github.com/ethereum/go-ethereum/tests/helper" ) @@ -76,11 +77,18 @@ func RunVmTest(p string, t *testing.T) { tests := make(map[string]VmTest) helper.CreateFileTests(t, p, &tests) + helper.Logger.SetLogLevel(5) for name, test := range tests { + if name != "ABAcalls1" { + continue + } statedb := state.New(helper.NewTrie()) for addr, account := range test.Pre { obj := StateObjectFromAccount(addr, account) statedb.SetStateObject(obj) + for a, v := range account.Storage { + obj.SetState(helper.FromHex(a), ethutil.NewValue(helper.FromHex(v))) + } } // XXX Yeah, yeah... @@ -129,6 +137,16 @@ func RunVmTest(p string, t *testing.T) { for addr, account := range test.Post { obj := statedb.GetStateObject(helper.FromHex(addr)) + if obj == nil { + continue + } + + if len(test.Exec) == 0 { + if obj.Balance().Cmp(ethutil.Big(account.Balance)) != 0 { + t.Errorf("%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())) + } + } + for addr, value := range account.Storage { v := obj.GetState(helper.FromHex(addr)).Bytes() vexp := helper.FromHex(value) @@ -149,6 +167,7 @@ func RunVmTest(p string, t *testing.T) { } } } + logger.Flush() } // I've created a new function for each tests so it's easier to identify where the problem lies if any of them fail. @@ -212,7 +231,12 @@ func TestStateRecursiveCreate(t *testing.T) { RunVmTest(fn, t) } -func TestStateSpecialTest(t *testing.T) { +func TestStateSpecial(t *testing.T) { const fn = "../files/StateTests/stSpecialTest.json" RunVmTest(fn, t) } + +func TestStateRefund(t *testing.T) { + const fn = "../files/StateTests/stRefundTest.json" + RunVmTest(fn, t) +} |