From 3bc64b6b6edf380aaa145e612988a4aa640e0d23 Mon Sep 17 00:00:00 2001 From: obscuren Date: Sat, 18 Oct 2014 23:20:25 +0200 Subject: Readers --- tests/vm/gh_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/vm') diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index c7f88a112..bfccef072 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -41,7 +41,7 @@ type VmTest struct { func RunVmTest(url string, t *testing.T) { tests := make(map[string]VmTest) - helper.CreateTests(t, url, &tests) + helper.CreateHttpTests(t, url, &tests) for name, test := range tests { state := ethstate.New(helper.NewTrie()) @@ -88,12 +88,12 @@ 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 TestVMArithmetic(t *testing.T) { + //helper.Logger.SetLogLevel(5) const url = "https://raw.githubusercontent.com/ethereum/tests/develop/vmtests/vmArithmeticTest.json" RunVmTest(url, t) } func TestVMSystemOperation(t *testing.T) { - //helper.Logger.SetLogLevel(5) const url = "https://raw.githubusercontent.com/ethereum/tests/develop/vmtests/vmSystemOperationsTest.json" RunVmTest(url, t) } -- cgit v1.2.3