diff options
Diffstat (limited to 'tests/vm_test_util.go')
-rw-r--r-- | tests/vm_test_util.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vm_test_util.go b/tests/vm_test_util.go index e23fda5ad..dc9f1d62c 100644 --- a/tests/vm_test_util.go +++ b/tests/vm_test_util.go @@ -128,9 +128,9 @@ func runVmTests(tests map[string]VmTest, skipTests []string) error { } for name, test := range tests { - if skipTest[name] { + if skipTest[name] /*|| name != "loop_stacklimit_1021"*/ { glog.Infoln("Skipping VM test", name) - return nil + continue } if err := runVmTest(test); err != nil { @@ -225,7 +225,7 @@ func RunVm(statedb *state.StateDB, env, exec map[string]string) ([]byte, vm.Logs value = common.Big(exec["value"]) ) caller := statedb.GetOrNewStateObject(from) - vm.Precompiled = make(map[string]*vm.PrecompiledAccount) + vm.PrecompiledContracts = make(map[common.Address]vm.PrecompiledContract) environment, _ := NewEVMEnvironment(true, chainConfig, statedb, env, exec) ret, err := environment.Call(caller, to, data, gas, value) |