aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/tool
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.
* tools/syz-declextract: allow to run on subset of archesDmitry Vyukov2025-04-032-0/+65
| | | | | | | This may be useful for downstream kernels that only build and are supposed to be used with a subset of arches. Some esoteric arches may be broken on such kernels. Allow to ignore them.
* all: use special placeholder for errorsTaras Madan2023-07-241-2/+2
|
* all: tools/syz-env make generate resultTaras Madan2023-02-241-3/+4
|
* all: ioutil is deprecated in go1.19 (#3718)Taras Madan2023-02-231-2/+2
|
* pkg/tool: minor comments fix (#2637)maramihali2021-06-301-3/+4
|
* pkg/tool: add custom flag typeMara Mihali2021-06-302-0/+46
| | | | cfgsFlag allows passing multiple config files as command line arguments.
* pkg/cmdprof: merge into pkg/toolDmitry Vyukov2020-12-254-16/+67
| | | | cmdprof functionality seems to fit well into pkg/tool.
* pkg/tool: add packageDmitry Vyukov2020-12-254-0/+241
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.