• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2017 syzkaller project authors. All rights reserved.
2// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
3
4package report
5
6import (
7	"regexp"
8)
9
10type netbsd struct {
11	kernelSrc string
12	kernelObj string
13	ignores   []*regexp.Regexp
14}
15
16func ctorNetbsd(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
17	ctx := &netbsd{
18		kernelSrc: kernelSrc,
19		kernelObj: kernelObj,
20		ignores:   ignores,
21	}
22	return ctx, nil, nil
23}
24
25func (ctx *netbsd) ContainsCrash(output []byte) bool {
26	return false
27}
28
29func (ctx *netbsd) Parse(output []byte) *Report {
30	return nil
31}
32
33func (ctx *netbsd) Symbolize(rep *Report) error {
34	return nil
35}
36