blob: d1946a338f727c8360041fafd5a3b12644215042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2017 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 report
type stub struct {
*config
}
func ctorStub(cfg *config) (reporterImpl, []string, error) {
ctx := &stub{
config: cfg,
}
return ctx, nil, nil
}
func (ctx *stub) ContainsCrash(output []byte) bool {
panic("not implemented")
}
func (ctx *stub) Parse(output []byte) *Report {
panic("not implemented")
}
func (ctx *stub) Symbolize(rep *Report) error {
panic("not implemented")
}
|