Update go dependencies (#4524)
This commit is contained in:
parent
2ba1a9e71a
commit
341d64b652
412 changed files with 43034 additions and 34165 deletions
4
vendor/github.com/onsi/gomega/gexec/build.go
generated
vendored
4
vendor/github.com/onsi/gomega/gexec/build.go
generated
vendored
|
|
@ -1,3 +1,5 @@
|
|||
// untested sections: 5
|
||||
|
||||
package gexec
|
||||
|
||||
import (
|
||||
|
|
@ -66,7 +68,7 @@ func doBuild(gopath, packagePath string, env []string, args ...string) (compiled
|
|||
|
||||
executable := filepath.Join(tmpDir, path.Base(packagePath))
|
||||
if runtime.GOOS == "windows" {
|
||||
executable = executable + ".exe"
|
||||
executable += ".exe"
|
||||
}
|
||||
|
||||
cmdArgs := append([]string{"build"}, args...)
|
||||
|
|
|
|||
2
vendor/github.com/onsi/gomega/gexec/exit_matcher.go
generated
vendored
2
vendor/github.com/onsi/gomega/gexec/exit_matcher.go
generated
vendored
|
|
@ -1,3 +1,5 @@
|
|||
// untested sections: 2
|
||||
|
||||
package gexec
|
||||
|
||||
import (
|
||||
|
|
|
|||
4
vendor/github.com/onsi/gomega/gexec/prefixed_writer.go
generated
vendored
4
vendor/github.com/onsi/gomega/gexec/prefixed_writer.go
generated
vendored
|
|
@ -1,3 +1,5 @@
|
|||
// untested sections: 1
|
||||
|
||||
package gexec
|
||||
|
||||
import (
|
||||
|
|
@ -6,7 +8,7 @@ import (
|
|||
)
|
||||
|
||||
/*
|
||||
PrefixedWriter wraps an io.Writer, emiting the passed in prefix at the beginning of each new line.
|
||||
PrefixedWriter wraps an io.Writer, emitting the passed in prefix at the beginning of each new line.
|
||||
This can be useful when running multiple gexec.Sessions concurrently - you can prefix the log output of each
|
||||
session by passing in a PrefixedWriter:
|
||||
|
||||
|
|
|
|||
3
vendor/github.com/onsi/gomega/gexec/session.go
generated
vendored
3
vendor/github.com/onsi/gomega/gexec/session.go
generated
vendored
|
|
@ -1,6 +1,9 @@
|
|||
/*
|
||||
Package gexec provides support for testing external processes.
|
||||
*/
|
||||
|
||||
// untested sections: 1
|
||||
|
||||
package gexec
|
||||
|
||||
import (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue