mirror of
https://github.com/golang/go
synced 2024-11-18 04:14:49 -07:00
go/ssa: implement missing testing.testDeps SetPanicOnExit0 method
A new method was added to testing.testDeps in CL 250977, which causes the implementation of that (unexported, explicitly-unstable) interface in go/ssa to no longer satisfy the interface. This is a quick, short-term fix. Longer term, the go/ssa package should switch to the supported TestMain API. Updates golang/go#41186 Change-Id: Ice110ef540e31a0a98085713346126ffeae64d5e Reviewed-on: https://go-review.googlesource.com/c/tools/+/252677 Run-TryBot: Bryan C. Mills <bcmills@google.com> Reviewed-by: Michael Matloob <matloob@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
d1954cc86c
commit
5b9ef244dc
@ -222,6 +222,7 @@ type deps struct{}
|
||||
|
||||
func (deps) ImportPath() string { return "" }
|
||||
func (deps) MatchString(pat, str string) (bool, error) { return true, nil }
|
||||
func (deps) SetPanicOnExit0(bool) {}
|
||||
func (deps) StartCPUProfile(io.Writer) error { return nil }
|
||||
func (deps) StartTestLog(io.Writer) {}
|
||||
func (deps) StopCPUProfile() {}
|
||||
|
Loading…
Reference in New Issue
Block a user