aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-benchcmp
Commit message (Collapse)AuthorAgeFilesLines
* all: use any instead of interface{}Dmitry Vyukov2025-12-221-1/+1
| | | | Any is the preferred over interface{} now in Go.
* tools/syz-benchcmp: don't start browser if -out is setAleksandr Nogikh2025-04-101-3/+5
| | | | The -out option is used by syz-testbed, which only needs the output.
* all: ioutil is deprecated in go1.19 (#3718)Taras Madan2023-02-231-2/+1
|
* tools/syz-benchcmp: let the tool take more optionsAleksandr Nogikh2021-10-201-34/+71
| | | | | | | | | | | Make it possible to build graphs not just over the "fuzzing" value, but also over arbitrary key (determined by the -over flag). Let the tool build not just 4, but also graphs of all other variables (when -all is passed). Let the user control the location of the .html file (if the -out flag is specified, otherwise the behavior remains the same).
* all: use tool.Failf instead of local functionsDmitry Vyukov2020-12-251-12/+8
|
* tools/syz-benchcmp: update name of coverage statDmitry Vyukov2019-04-081-1/+1
|
* pkg/osutil: provide better RenameDmitry Vyukov2018-12-171-1/+3
| | | | | os.Rename fails for cross-device renaming (e.g. to/from tmpfs). This is quite unpleasant. Provide own version that falls back to copying.
* .gometalinter.json: enable gofmtDmitry Vyukov2018-07-311-4/+4
| | | | | | | The part that we want from gofmt is simplify (-s). Fix all code that needs fixing. Update #538
* tools/syz-benchcmp: add execution speedDmitry Vyukov2017-08-101-0/+16
| | | | | | | | | Exec total is affected by initial triage/minimize phase, so two experiments can have the same execution speed in the stable mode, but have constant diff due to the initial phase. The one that is higher looks better, but that's not very important. Provide execution speed characteristic that is not affected by initial phase. It is not displayed by default.
* tools/syz-benchcmp: add utility for visualization of syz-manager ↵Dmitry Vyukov2017-01-201-0/+247
benchmarking results