diff options
Diffstat (limited to 'tests/vm/gh_test.go')
-rw-r--r-- | tests/vm/gh_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
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" |