diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-15 05:01:52 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-15 05:01:52 +0800 |
commit | 2a9fc7baa908d64ff1ddae44641024114d3ec88d (patch) | |
tree | 7b94082bd16765984046fa3c04c2ed57812d8c89 /vm/vm_test.go | |
parent | 56aa24002de357c24a9644a49d5702c8d4663909 (diff) | |
download | dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.gz dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.zst dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.zip |
Merge branch 'develop' of https://github.com/tgerring/go-ethereum
Diffstat (limited to 'vm/vm_test.go')
-rw-r--r-- | vm/vm_test.go | 14 |
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) |