aboutsummaryrefslogtreecommitdiffstats
path: root/syz-ci/managercmd.go
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.
* syz-ci: rename bench file on all syz-manager restartsAleksandr Nogikh2024-12-121-1/+4
| | | | | | ManagerCmd transparently restarts the instance in case of crashes, so we should better be cleaning up the bench file within its loop, rather than in manager.go.
* all: fix comments formatDmitry Vyukov2020-07-121-3/+3
| | | | | | | Fix capitalization, dots at the end and two spaces after a period. Update #1876
* pkg/osutil: provide better RenameDmitry Vyukov2018-12-171-1/+1
| | | | | 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: check dot importsDmitry Vyukov2018-05-031-5/+5
| | | | Update #538
* dashboard/app: add manager monitoringDmitry Vyukov2017-12-011-6/+13
| | | | | | | | Make it possible to monitor health and operation of all managers from dashboard. 1. Notify dashboard about internal syz-ci errors (currently we don't know when/if they happen). 2. Send statistics from managers to dashboard.
* pkg/osutil: don't leace runaway processesDmitry Vyukov2017-11-161-1/+2
| | | | | | When manager is stopped there are sometimes runaway qemu processes still running. Set PDEATHSIG for all subprocesses. We never need child processes outliving parents.
* syz-ci: save previous manager logDmitry Vyukov2017-07-211-2/+3
| | | | | | If manager exits during start, it's hard to understand what happens. Save the previous manager log as manager.log.old until we have a better solution. Also log errors on 0 log level.
* syz-ci: add continuous integration systemDmitry Vyukov2017-06-201-0/+120