aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/fuchsia.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-05-07 13:05:41 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-05-07 13:05:41 +0200
commitb9fea20df7dd0bd1279ae80c99f9bc9969e1fe5a (patch)
treecb9488268c091408bc5fcf8f1c282277e77ea2b4 /pkg/report/fuchsia.go
parent757359b5ea7c593baeb8e2c9ac3d86546711ab6f (diff)
pkg/report: remove duplicated stub code
Update #538
Diffstat (limited to 'pkg/report/fuchsia.go')
-rw-r--r--pkg/report/fuchsia.go40
1 files changed, 0 insertions, 40 deletions
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")
-}