diff options
author | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-10-17 23:24:44 +0800 |
---|---|---|
committer | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-10-17 23:24:44 +0800 |
commit | fc308b842eafe6f6703dd21a003a8abaf3538aa4 (patch) | |
tree | 6a318065065568d7f0bad6d3dcd3e8a7ed3136b9 /tests/vm | |
parent | e183880d8b02d4a9713b903acb41dd4381957f81 (diff) | |
parent | 35f339e9423bb3f3b5130e954e4a03937971b0ac (diff) | |
download | go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar.gz go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar.bz2 go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar.lz go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar.xz go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.tar.zst go-tangerine-fc308b842eafe6f6703dd21a003a8abaf3538aa4.zip |
Merge pull request #59 from fjl/feature/raceless-ethlog
Improve package ethlog
Diffstat (limited to 'tests/vm')
-rw-r--r-- | tests/vm/gh_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index 5de5b6433..0e0c6aa49 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -4,6 +4,7 @@ import ( "bytes" "testing" + "github.com/ethereum/eth-go/ethlog" "github.com/ethereum/eth-go/ethstate" "github.com/ethereum/eth-go/ethutil" "github.com/ethereum/eth-go/tests/helper" @@ -87,6 +88,9 @@ func RunVmTest(url string, t *testing.T) { } // I've created a new function for each tests so it's easier to identify where the problem lies if any of them fail. +func TestVMSha3(t *testing.T) { + helper.Logger.SetLogLevel(ethlog.Silence) + defer helper.Logger.SetLogLevel(ethlog.DebugLevel) func TestVMArithmetic(t *testing.T) { const url = "https://raw.githubusercontent.com/ethereum/tests/develop/vmtests/vmArithmeticTest.json" |