From 49379ee008e5f2af6e551c2e23fcd6b1ebb4d5c2 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 22 Sep 2025 11:07:47 +0200 Subject: syz-cluster: log boot step findings If a boot test step failed and we don't report the finding to the dashboard, print the report/output to the console to facilitate debugging. --- syz-cluster/workflow/boot-step/main.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'syz-cluster') diff --git a/syz-cluster/workflow/boot-step/main.go b/syz-cluster/workflow/boot-step/main.go index 648d7d5bb..1711ee961 100644 --- a/syz-cluster/workflow/boot-step/main.go +++ b/syz-cluster/workflow/boot-step/main.go @@ -113,6 +113,9 @@ func runTest(ctx context.Context, client *api.Client) (bool, error) { if findingErr != nil { return false, fmt.Errorf("failed to report the finding: %w", findingErr) } + } else { + log.Printf("report:\n%s", rep.Report) + log.Printf("output:\n%s", rep.Output) } return false, nil } -- cgit mrf-deployment