From 7254278c09e38edf04d311e42301ba6e55d32da9 Mon Sep 17 00:00:00 2001 From: Gustav Simonsson Date: Wed, 22 Apr 2015 12:09:21 +0200 Subject: Add test wrapper for VMTests/vmInputLimits1.json --- tests/vm/gh_test.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/vm') diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index a5bc273f3..b63b3192a 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -269,6 +269,11 @@ func TestVmLog(t *testing.T) { RunVmTest(fn, t) } +func TestInputLimits1(t *testing.T) { + const fn = "../files/VMTests/vmInputLimits1.json" + RunVmTest(fn, t) +} + func TestStateExample(t *testing.T) { const fn = "../files/StateTests/stExample.json" RunVmTest(fn, t) -- cgit v1.2.3 From 24de35ef0983a6f3f6dd16235d92f33c900096aa Mon Sep 17 00:00:00 2001 From: Gustav Simonsson Date: Wed, 22 Apr 2015 15:19:37 +0200 Subject: Add StateTests/stMemoryStressTest.json but skip for now --- tests/vm/gh_test.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/vm') diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index b63b3192a..2545affe5 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -335,6 +335,12 @@ func TestMemory(t *testing.T) { RunVmTest(fn, t) } +func TestMemoryStress(t *testing.T) { + t.Skip("Skipped due to...consuming too much memory :D") + const fn = "../files/StateTests/stMemoryStressTest.json" + RunVmTest(fn, t) +} + func TestQuadraticComplexity(t *testing.T) { t.Skip() // takes too long const fn = "../files/StateTests/stQuadraticComplexityTest.json" -- cgit v1.2.3