2017-10-17 16:08:39 +00:00
|
|
|
// 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
|
|
|
|
|
2018-05-07 11:05:41 +00:00
|
|
|
type stub struct {
|
2019-07-23 07:15:43 +00:00
|
|
|
*config
|
2017-10-17 16:08:39 +00:00
|
|
|
}
|
|
|
|
|
2019-07-23 07:15:43 +00:00
|
|
|
func ctorStub(cfg *config) (Reporter, []string, error) {
|
2018-05-07 11:05:41 +00:00
|
|
|
ctx := &stub{
|
2019-07-23 07:15:43 +00:00
|
|
|
config: cfg,
|
2017-10-17 16:08:39 +00:00
|
|
|
}
|
2018-06-21 12:38:08 +00:00
|
|
|
return ctx, nil, nil
|
2017-10-17 16:08:39 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 11:05:41 +00:00
|
|
|
func (ctx *stub) ContainsCrash(output []byte) bool {
|
2017-10-17 16:08:39 +00:00
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2018-05-07 11:05:41 +00:00
|
|
|
func (ctx *stub) Parse(output []byte) *Report {
|
2017-10-17 16:08:39 +00:00
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2018-05-07 11:05:41 +00:00
|
|
|
func (ctx *stub) Symbolize(rep *Report) error {
|
2017-10-17 16:08:39 +00:00
|
|
|
panic("not implemented")
|
|
|
|
}
|