aboutsummaryrefslogtreecommitdiffstats
path: root/syz-ci
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-07-27 08:49:41 +0200
committerTaras Madan <tarasmadan@google.com>2023-07-27 12:23:02 +0000
commitda37de731e0fc8bc24891882e849e703965968ce (patch)
treec321dcbd5de5fd2779b70d9c1084b60766900341 /syz-ci
parent41fe1bae463b32861fb14e967372da7e318bc6e1 (diff)
syz-ci: increase bisection confidence cut-off to 0.66
Judging from the bisection logs, the confidence level statistic indeed correlates with the chance of the result being true positive. Let's use a stricter threshold to publish fewer false positives.
Diffstat (limited to 'syz-ci')
-rw-r--r--syz-ci/jobs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-ci/jobs.go b/syz-ci/jobs.go
index edf28a5d3..8df869397 100644
--- a/syz-ci/jobs.go
+++ b/syz-ci/jobs.go
@@ -549,7 +549,7 @@ func (jp *JobProcessor) bisect(job *Job, mgrcfg *mgrconfig.Config) error {
if res.IsRelease {
resp.Flags |= dashapi.BisectResultRelease
}
- const confidenceCutOff = 0.5
+ const confidenceCutOff = 0.66
if res.Confidence < confidenceCutOff {
resp.Flags |= dashapi.BisectResultIgnore
}