mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-31 23:36:12 +00:00
Merge pull request #260 from jcvenegas/go1.10
versions: move to go 1.10
This commit is contained in:
commit
d4225ede2f
4
Gopkg.lock
generated
4
Gopkg.lock
generated
@ -47,7 +47,7 @@
|
|||||||
branch = "master"
|
branch = "master"
|
||||||
name = "github.com/dlespiau/covertool"
|
name = "github.com/dlespiau/covertool"
|
||||||
packages = ["pkg/cover"]
|
packages = ["pkg/cover"]
|
||||||
revision = "d45792f23e9014540f89404081285a1b4d097234"
|
revision = "b0c4c6d0583aae4e3b5d12b6ec47767670548cc4"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
name = "github.com/go-ini/ini"
|
name = "github.com/go-ini/ini"
|
||||||
@ -257,6 +257,6 @@
|
|||||||
[solve-meta]
|
[solve-meta]
|
||||||
analyzer-name = "dep"
|
analyzer-name = "dep"
|
||||||
analyzer-version = 1
|
analyzer-version = 1
|
||||||
inputs-digest = "1d1c6e1edc48dac73618d0ce04d505e22276ad5a3e299dd0964eca608fe8e2f1"
|
inputs-digest = "cc11dcb278b249e203b53c823a9a27d5e5210b56fcaedab509651f25a5163d03"
|
||||||
solver-name = "gps-cdcl"
|
solver-name = "gps-cdcl"
|
||||||
solver-version = 1
|
solver-version = 1
|
||||||
|
2
vendor/github.com/dlespiau/covertool/pkg/cover/cover.go
generated
vendored
2
vendor/github.com/dlespiau/covertool/pkg/cover/cover.go
generated
vendored
@ -47,6 +47,8 @@ type dummyTestDeps func(pat, str string) (bool, error)
|
|||||||
func (d dummyTestDeps) MatchString(pat, str string) (bool, error) { return false, nil }
|
func (d dummyTestDeps) MatchString(pat, str string) (bool, error) { return false, nil }
|
||||||
func (d dummyTestDeps) StartCPUProfile(io.Writer) error { return nil }
|
func (d dummyTestDeps) StartCPUProfile(io.Writer) error { return nil }
|
||||||
func (d dummyTestDeps) StopCPUProfile() {}
|
func (d dummyTestDeps) StopCPUProfile() {}
|
||||||
|
func (f dummyTestDeps) StartTestLog(w io.Writer) {}
|
||||||
|
func (f dummyTestDeps) StopTestLog() error { return nil }
|
||||||
func (d dummyTestDeps) WriteHeapProfile(io.Writer) error { return nil }
|
func (d dummyTestDeps) WriteHeapProfile(io.Writer) error { return nil }
|
||||||
func (d dummyTestDeps) WriteProfileTo(string, io.Writer, int) error { return nil }
|
func (d dummyTestDeps) WriteProfileTo(string, io.Writer, int) error { return nil }
|
||||||
func (f dummyTestDeps) ImportPath() string { return "" }
|
func (f dummyTestDeps) ImportPath() string { return "" }
|
||||||
|
@ -139,7 +139,7 @@ languages:
|
|||||||
notes: "'version' is the default minimum version used by this project."
|
notes: "'version' is the default minimum version used by this project."
|
||||||
version: "1.8.3"
|
version: "1.8.3"
|
||||||
meta:
|
meta:
|
||||||
newest-version: "1.9.2"
|
newest-version: "1.10"
|
||||||
|
|
||||||
specs:
|
specs:
|
||||||
description: "Details of important specifications"
|
description: "Details of important specifications"
|
||||||
|
@ -46,10 +46,9 @@ func TestCCProxyStart(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Sandbox{
|
Sandbox{
|
||||||
config: &SandboxConfig{
|
config: &SandboxConfig{
|
||||||
ProxyType: CCProxyType,
|
ProxyType: CCProxyType,
|
||||||
ProxyConfig: ProxyConfig{
|
|
||||||
// invalid - no path
|
// invalid - no path
|
||||||
},
|
ProxyConfig: ProxyConfig{},
|
||||||
},
|
},
|
||||||
}, "", true,
|
}, "", true,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user