github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/pkg/report/stub.go (about)

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