From c52d06e41031046b8e2a1782418fbd85f469455c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 13 Sep 2020 18:46:42 +0200 Subject: sys/linux/test: mark f2fs tests as manual Introduce "manual" requirement for tests (only run if explicitly selected) and mark f2fs tests as manual. There are too many of them. Follow up to #2032 --- pkg/runtest/run.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg') diff --git a/pkg/runtest/run.go b/pkg/runtest/run.go index 358e8266c..408029467 100644 --- a/pkg/runtest/run.go +++ b/pkg/runtest/run.go @@ -198,6 +198,7 @@ nextSandbox: } } properties := map[string]bool{ + "manual": ctx.Tests != "", // "manual" tests run only if selected by the filter explicitly. "arch=" + ctx.Target.Arch: true, "sandbox=" + sandbox: true, "littleendian": ctx.Target.LittleEndian, -- cgit mrf-deployment