From b9fea20df7dd0bd1279ae80c99f9bc9969e1fe5a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 7 May 2018 13:05:41 +0200 Subject: pkg/report: remove duplicated stub code Update #538 --- pkg/report/fuchsia.go | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 pkg/report/fuchsia.go (limited to 'pkg/report/fuchsia.go') diff --git a/pkg/report/fuchsia.go b/pkg/report/fuchsia.go deleted file mode 100644 index 9e75c97b7..000000000 --- a/pkg/report/fuchsia.go +++ /dev/null @@ -1,40 +0,0 @@ -// 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" - - "github.com/google/syzkaller/pkg/symbolizer" -) - -type fuchsia struct { - kernelSrc string - kernelObj string - symbols map[string][]symbolizer.Symbol - ignores []*regexp.Regexp -} - -func ctorFuchsia(kernelSrc, kernelObj string, symbols map[string][]symbolizer.Symbol, - ignores []*regexp.Regexp) (Reporter, error) { - ctx := &fuchsia{ - kernelSrc: kernelSrc, - kernelObj: kernelObj, - symbols: symbols, - ignores: ignores, - } - return ctx, nil -} - -func (ctx *fuchsia) ContainsCrash(output []byte) bool { - panic("not implemented") -} - -func (ctx *fuchsia) Parse(output []byte) *Report { - panic("not implemented") -} - -func (ctx *fuchsia) Symbolize(rep *Report) error { - panic("not implemented") -} -- cgit mrf-deployment