aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vm_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@users.noreply.github.com>2018-09-29 04:23:47 +0800
committerGitHub <noreply@github.com>2018-09-29 04:23:47 +0800
commit79ca6c7a657f5f6660fb136707edb07951bb3309 (patch)
treebfea93213f5cc1ddba7e00534698ae9bda53664d /tests/vm_test.go
parent4d8c7248bda39e43b7d58ba894c26c4562a13c3f (diff)
downloadgo-tangerine-79ca6c7a657f5f6660fb136707edb07951bb3309.tar
go-tangerine-79ca6c7a657f5f6660fb136707edb07951bb3309.tar.gz
go-tangerine-79ca6c7a657f5f6660fb136707edb07951bb3309.tar.bz2
go-tangerine-79ca6c7a657f5f6660fb136707edb07951bb3309.tar.lz
go-tangerine-79ca6c7a657f5f6660fb136707edb07951bb3309.tar.xz
go-tangerine-79ca6c7a657f5f6660fb136707edb07951bb3309.tar.zst
go-tangerine-79ca6c7a657f5f6660fb136707edb07951bb3309.zip
tests: update slow test lists, skip on windows/386 (#17758)
Diffstat (limited to 'tests/vm_test.go')
-rw-r--r--tests/vm_test.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/vm_test.go b/tests/vm_test.go
index c9f5e225e..441483dff 100644
--- a/tests/vm_test.go
+++ b/tests/vm_test.go
@@ -25,13 +25,9 @@ import (
func TestVM(t *testing.T) {
t.Parallel()
vmt := new(testMatcher)
+ vmt.slow("^vmPerformance")
vmt.fails("^vmSystemOperationsTest.json/createNameRegistrator$", "fails without parallel execution")
- vmt.skipLoad(`^vmInputLimits(Light)?.json`) // log format broken
-
- vmt.skipShortMode("^vmPerformanceTest.json")
- vmt.skipShortMode("^vmInputLimits(Light)?.json")
-
vmt.walk(t, vmTestDir, func(t *testing.T, name string, test *VMTest) {
withTrace(t, test.json.Exec.GasLimit, func(vmconfig vm.Config) error {
return vmt.checkFailure(t, name, test.Run(vmconfig))