From 61936307866445588e3912c98f87e8ae1a4e5ddf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 13 Feb 2019 11:35:37 +0100 Subject: pkg/runtest: don't print skipped/broken tests by default SKIP/BROKEN distract too much attention from FAIL tests and are not usually interesting. Add Verbose flag that controls printing of SKIP/BROKEN tests. Enable it in pkf/runtest/run_test.go by default and disable in tools/syz-runtest. --- tools/syz-runtest/runtest.go | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/syz-runtest/runtest.go b/tools/syz-runtest/runtest.go index 54be07703..e507db571 100644 --- a/tools/syz-runtest/runtest.go +++ b/tools/syz-runtest/runtest.go @@ -122,6 +122,7 @@ func main() { EnabledCalls: enabledCalls, Requests: mgr.requests, LogFunc: func(text string) { fmt.Println(text) }, + Verbose: false, } err = ctx.Run() close(vm.Shutdown) -- cgit mrf-deployment