diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-19 06:32:58 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-19 06:32:58 +0800 |
commit | 4789084998553befa5db1bfe5a14881aa567cb9e (patch) | |
tree | 2c177f21f5aa74dc3518686f02817fa5d6bf367c | |
parent | 332568379454dce6b1fb3c3e023a53d0c52cded0 (diff) | |
download | dexon-4789084998553befa5db1bfe5a14881aa567cb9e.tar dexon-4789084998553befa5db1bfe5a14881aa567cb9e.tar.gz dexon-4789084998553befa5db1bfe5a14881aa567cb9e.tar.bz2 dexon-4789084998553befa5db1bfe5a14881aa567cb9e.tar.lz dexon-4789084998553befa5db1bfe5a14881aa567cb9e.tar.xz dexon-4789084998553befa5db1bfe5a14881aa567cb9e.tar.zst dexon-4789084998553befa5db1bfe5a14881aa567cb9e.zip |
updated tests
-rw-r--r-- | tests/vm/gh_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index ca63b90d3..10d63897d 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -77,11 +77,11 @@ func RunVmTest(p string, t *testing.T) { tests := make(map[string]VmTest) helper.CreateFileTests(t, p, &tests) - //helper.Logger.SetLogLevel(5) + helper.Logger.SetLogLevel(5) for name, test := range tests { - // if name != "refund50_1" { - // continue - // } + if name != "CallRecursiveBomb0" { + continue + } statedb := state.New(helper.NewTrie()) for addr, account := range test.Pre { obj := StateObjectFromAccount(addr, account) |