blob: f0e3dadb715279ff08d7e97c99a3a629454b2891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2025 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package assessmenet
// Common inputs for bug assessment when we don't have a reproducer.
type Inputs struct {
CrashReport string
KernelRepo string
KernelCommit string
KernelConfig string
CodesearchToolBin string
}
|