aboutsummaryrefslogtreecommitdiffstats
path: root/prog/meta.go
Commit message (Collapse)AuthorAgeFilesLines
* all: apply linter auto fixesTaras Madan2025-07-171-1/+1
| | | | ./tools/syz-env bin/golangci-lint run ./... --fix
* prog: let explicitly check whether git revision is knownAleksandr Nogikh2024-10-251-4/+10
| | | | | There was a bug in syz-manager because of that. Fix it by introducing a new method in prog.
* prog/meta.go (#3570)Taras Madan2022-11-291-4/+4
| | | Use "unknown" revision as a default.
* prog: drop semicolons in 'go build' output to not confuse vimAlexey Kardashevskiy2020-10-261-1/+1
| | | | | | | | | | | When running "make" under vim, it treats numbers after semicolons as line numbers and the existing invocation of "git lot" uses the date format with semicolons. This changes the git rev not to use semicolons so it changes from "Wed, 13 May 2020 21:11:52 +0200" to "20200513-211152". Signed-off-by: Alexey Kardashevskiy <aik@linux.ibm.com>
* prog: dump orig prog if Deserialize panicsDmitry Vyukov2020-02-211-0/+26
We are seeing some one-off panics during Deserialization and it's unclear if it's machine memory corrpution or an actual bug in prog. I leam towards machine memory corruption but it's impossible to prove without seeing the orig program. Move git revision to prog and it's more base package (sys can import prog, prog can't import sys).