aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-15 05:01:52 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-15 05:01:52 +0800
commit2a9fc7baa908d64ff1ddae44641024114d3ec88d (patch)
tree7b94082bd16765984046fa3c04c2ed57812d8c89 /vm
parent56aa24002de357c24a9644a49d5702c8d4663909 (diff)
downloadgo-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar
go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.gz
go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.bz2
go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.lz
go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.xz
go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.zst
go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.zip
Merge branch 'develop' of https://github.com/tgerring/go-ethereum
Diffstat (limited to 'vm')
-rw-r--r--vm/vm_test.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/vm/vm_test.go b/vm/vm_test.go
index 948dd835f..ed05cddfb 100644
--- a/vm/vm_test.go
+++ b/vm/vm_test.go
@@ -14,7 +14,7 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/trie"
- "github.com/obscuren/mutan"
+ // "github.com/obscuren/mutan"
)
type TestEnv struct{}
@@ -67,9 +67,9 @@ func setup(level logger.LogLevel, typ Type) (*Closure, VirtualMachine) {
var big9 = ethutil.Hex2Bytes("0000000000000000000000000000000000000000000000000000000000000009")
func TestDebugVm(t *testing.T) {
- if mutan.Version < "0.6" {
- t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
- }
+ // if mutan.Version < "0.6" {
+ // t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
+ // }
closure, vm := setup(logger.DebugLevel, DebugVmTy)
ret, _, e := closure.Call(vm, nil)
@@ -82,9 +82,9 @@ func TestDebugVm(t *testing.T) {
}
func TestVm(t *testing.T) {
- if mutan.Version < "0.6" {
- t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
- }
+ // if mutan.Version < "0.6" {
+ // t.Skip("skipping for mutan version", mutan.Version, " < 0.6")
+ // }
closure, vm := setup(logger.DebugLevel, StandardVmTy)
ret, _, e := closure.Call(vm, nil)