This commit is contained in:
Christoph Jentzsch 2015-05-19 13:46:18 +00:00
commit 197d4859c0

View file

@ -342,13 +342,11 @@ func TestMemory(t *testing.T) {
} }
func TestMemoryStress(t *testing.T) { func TestMemoryStress(t *testing.T) {
t.Skip("Skipped due to...consuming too much memory :D")
const fn = "../files/StateTests/stMemoryStressTest.json" const fn = "../files/StateTests/stMemoryStressTest.json"
RunVmTest(fn, t) RunVmTest(fn, t)
} }
func TestQuadraticComplexity(t *testing.T) { func TestQuadraticComplexity(t *testing.T) {
t.Skip() // takes too long
const fn = "../files/StateTests/stQuadraticComplexityTest.json" const fn = "../files/StateTests/stQuadraticComplexityTest.json"
RunVmTest(fn, t) RunVmTest(fn, t)
} }
@ -364,7 +362,7 @@ func TestWallet(t *testing.T) {
} }
func TestRandom(t *testing.T) { func TestRandom(t *testing.T) {
// TODO: fix JSON EOF bug and unskip // TODO: fix JSON EOF bug and unskip !!!
t.Skip() t.Skip()
fileNames := make([]string, 1024) fileNames := make([]string, 1024)
fileInfos, err := ioutil.ReadDir("../files/StateTests/RandomTests") fileInfos, err := ioutil.ReadDir("../files/StateTests/RandomTests")