aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/pkg/report/testdata
Commit message (Collapse)AuthorAgeFilesLines
* syz-cluster: basic support for finding invalidationAleksandr Nogikh2025-12-012-0/+6
| | | | | | Add some initial #syz invalid support to syz-cluster. For now, mark all findings as invalid and don't display that such series have findings on the web dashboard.
* syz-cluster: prefix Tested-By in the email reportsAleksandr Nogikh2025-08-204-4/+4
| | | | | | Add some leading whitespaces to the suggested Tested-By tag, otherwise it must be misinterpreted by other kernel tools, see: https://lore.kernel.org/all/20250819175842.7edaf8a5@kernel.org/
* syz-cluster: ask to leave a credit tagAleksandr Nogikh2025-07-234-0/+24
| | | | | Update the email template to include a suggestion to add a Tested-By tag to the affected series.
* syz-cluster: keep only one Cc list in SessionReportAleksandr Nogikh2025-07-172-2/+2
| | | | | | | | | Currently, the list was both within the Series object and within the SessionReport object that also encloses Series. And, since only was was actually filled, we were unable to actually Cc the people from the series. Keep only the Cc list in the Series object and adjust the tests.
* syz-cluster: remember and share kernel tree URLsAleksandr Nogikh2025-07-176-9/+18
| | | | | | | | Share not just the tree name (mainline, net, etc), but also the full URL to check out the repository. For that, add one more field to the Build entity and adjust email reporting templates.
* syz-cluster: make single finding emails look more naturalAleksandr Nogikh2025-07-163-0/+106
| | | | Include a list of findings only if there are several of them.
* syz-cluster/pkg/report: don't html escape emailsAleksandr Nogikh2025-07-143-3/+3
| | | | We send plain text emails, there's no reason to escape them.
* syz-cluster: make reports more detailedAleksandr Nogikh2025-07-143-12/+14
| | | | | | | Fill in build details per each finding and display that information in the report email. Extend the test that verifies how api.SessionReport is filled.
* syz-cluster/pkg/report: add an email templateAleksandr Nogikh2025-02-193-0/+148
The first revision of the email template that will be used for reporting the findings. This PR adds more fields to the pkg/api package, but these are not filled by the implementation yet. That will be done separately.