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 stub struct { 11 kernelSrc string 12 kernelObj string 13 ignores []*regexp.Regexp 14} 15 16func ctorStub(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) { 17 ctx := &stub{ 18 kernelSrc: kernelSrc, 19 kernelObj: kernelObj, 20 ignores: ignores, 21 } 22 return ctx, nil, nil 23} 24 25func (ctx *stub) ContainsCrash(output []byte) bool { 26 panic("not implemented") 27} 28 29func (ctx *stub) Parse(output []byte) *Report { 30 panic("not implemented") 31} 32 33func (ctx *stub) Symbolize(rep *Report) error { 34 panic("not implemented") 35} 36