From d9f26cb2393432ec6ef29c3e5e891d33d26b38fa Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 19 May 2023 08:26:23 +0200 Subject: dashboard: do tree origin testing also with syz repros Not all bugs will get the C repro. --- dashboard/app/tree.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/app/tree.go b/dashboard/app/tree.go index 0ac434c9a..09e69ff2f 100644 --- a/dashboard/app/tree.go +++ b/dashboard/app/tree.go @@ -581,8 +581,8 @@ func (ctx *bugTreeContext) isCrashRelevant(crash *Crash) (bool, error) { if crash.ReproIsRevoked { // No sense in running the reproducer. return false, nil - } else if crash.ReproC == 0 { - // Let's wait for the C repro. + } else if crash.ReproC == 0 && crash.ReproSyz == 0 { + // Let's wait for the repro. return false, nil } newManager, _ := activeManager(crash.Manager, ctx.bug.Namespace) -- cgit mrf-deployment