aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-05-19 08:26:23 +0200
committerAleksandr Nogikh <wp32pw@gmail.com>2023-05-19 16:29:42 +0200
commitd9f26cb2393432ec6ef29c3e5e891d33d26b38fa (patch)
tree80e036429692dfbe7756e3556cc72643457d1862
parente0257275e18c459a2d8b12aa631a02b90278f12b (diff)
dashboard: do tree origin testing also with syz repros
Not all bugs will get the C repro.
-rw-r--r--dashboard/app/tree.go4
1 files 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)