diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-04-22 21:19:37 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-04-23 05:16:19 +0800 |
commit | 24de35ef0983a6f3f6dd16235d92f33c900096aa (patch) | |
tree | 89021013ddd968a1bc03b780e215ad703c2c3aa5 | |
parent | 5c70333a1272c53526f285e6777d28c0d2e83f4a (diff) | |
download | dexon-24de35ef0983a6f3f6dd16235d92f33c900096aa.tar.gz dexon-24de35ef0983a6f3f6dd16235d92f33c900096aa.tar.zst dexon-24de35ef0983a6f3f6dd16235d92f33c900096aa.zip |
Add StateTests/stMemoryStressTest.json but skip for now
-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" |