aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/tool/tool.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/tool: add ServeHTTP functionDmitry Vyukov2025-12-291-0/+17
| | | | Dedup code in syz-ci and syz-hub.
* all: use any instead of interface{}Dmitry Vyukov2025-12-221-1/+1
| | | | Any is the preferred over interface{} now in Go.
* all: tools/syz-env make generate resultTaras Madan2023-02-241-3/+4
|
* pkg/cmdprof: merge into pkg/toolDmitry Vyukov2020-12-251-0/+15
| | | | cmdprof functionality seems to fit well into pkg/tool.
* pkg/tool: add packageDmitry Vyukov2020-12-251-0/+19
Package tool contains various helper utilitites useful for implementation of command line tools. Currently it contains Fail/Failf functions that we commonly use and new support for optional command line flags.