2017-10-25 14:43:48 +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
|
|
|
|
|
|
|
|
import (
|
|
|
|
"regexp"
|
|
|
|
)
|
|
|
|
|
|
|
|
type netbsd struct {
|
|
|
|
kernelSrc string
|
|
|
|
kernelObj string
|
|
|
|
ignores []*regexp.Regexp
|
|
|
|
}
|
|
|
|
|
2018-06-21 12:38:08 +00:00
|
|
|
func ctorNetbsd(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
|
2017-10-25 14:43:48 +00:00
|
|
|
ctx := &netbsd{
|
|
|
|
kernelSrc: kernelSrc,
|
|
|
|
kernelObj: kernelObj,
|
|
|
|
ignores: ignores,
|
|
|
|
}
|
2018-06-21 12:38:08 +00:00
|
|
|
return ctx, nil, nil
|
2017-10-25 14:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *netbsd) ContainsCrash(output []byte) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-11-14 08:41:55 +00:00
|
|
|
func (ctx *netbsd) Parse(output []byte) *Report {
|
|
|
|
return nil
|
2017-10-25 14:43:48 +00:00
|
|
|
}
|
|
|
|
|
2017-11-29 16:53:07 +00:00
|
|
|
func (ctx *netbsd) Symbolize(rep *Report) error {
|
|
|
|
return nil
|
2017-10-25 14:43:48 +00:00
|
|
|
}
|