diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-02-13 11:35:37 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-02-13 15:58:42 +0100 |
| commit | 61936307866445588e3912c98f87e8ae1a4e5ddf (patch) | |
| tree | dcfbdbcb2c5d90b40eb4a013be7969b37672182d /tools | |
| parent | 982ed4be0bd2d246ee3a5bcdf61fca4b7dce8c0e (diff) | |
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.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/syz-runtest/runtest.go | 1 |
1 files changed, 1 insertions, 0 deletions
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) |
