aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-09-13 18:46:42 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-09-13 19:28:47 +0200
commitc52d06e41031046b8e2a1782418fbd85f469455c (patch)
treec8e9aa4006ea76bc05281a3c089621c4245c6621 /pkg
parent84b0c3d8f691db95f297d14065269edb9cd2e0d6 (diff)
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
Diffstat (limited to 'pkg')
-rw-r--r--pkg/runtest/run.go1
1 files changed, 1 insertions, 0 deletions
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,