aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vm/gh_test.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-04-23 17:49:51 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-04-23 17:49:51 +0800
commit2fe54ab233c0cd1bf09b49085477c961dcc1980f (patch)
tree5e18ad0907320997a28c848a7740e680a5fa7fd6 /tests/vm/gh_test.go
parent0071fbed8c1525bedf43e3bbd444b11e64b87f27 (diff)
parent49da462e92fd597ba6242231b9dc0809e683862b (diff)
downloadgo-tangerine-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar
go-tangerine-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.gz
go-tangerine-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.bz2
go-tangerine-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.lz
go-tangerine-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.xz
go-tangerine-2fe54ab233c0cd1bf09b49085477c961dcc1980f.tar.zst
go-tangerine-2fe54ab233c0cd1bf09b49085477c961dcc1980f.zip
Merge pull request #779 from Gustav-Simonsson/block_tests_reloaded
Block tests reloaded
Diffstat (limited to 'tests/vm/gh_test.go')
-rw-r--r--tests/vm/gh_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go
index a5bc273f3..2545affe5 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)
@@ -330,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"