1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

rm-gocheck: check.C -> testing.B for BenchmarkXXX

sed -E -i 's#( Benchmark[^\(]+\([^ ]+ \*)check\.C\b#\1testing.B#g' \
-- "integration-cli/benchmark_test.go" "integration-cli/docker_cli_logs_bench_test.go"

Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
Tibor Vass 2019-09-09 21:05:55 +00:00
parent 1f69c62540
commit 6ecff64d03
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
) )
func (s *DockerSuite) BenchmarkConcurrentContainerActions(c *check.C) { func (s *DockerSuite) BenchmarkConcurrentContainerActions(c *testing.B) {
maxConcurrency := runtime.GOMAXPROCS(0) maxConcurrency := runtime.GOMAXPROCS(0)
numIterations := c.N numIterations := c.N
outerGroup := &sync.WaitGroup{} outerGroup := &sync.WaitGroup{}

View file

@ -8,7 +8,7 @@ import (
"github.com/go-check/check" "github.com/go-check/check"
) )
func (s *DockerSuite) BenchmarkLogsCLIRotateFollow(c *check.C) { func (s *DockerSuite) BenchmarkLogsCLIRotateFollow(c *testing.B) {
out, _ := dockerCmd(c, "run", "-d", "--log-opt", "max-size=1b", "--log-opt", "max-file=10", "busybox", "sh", "-c", "while true; do usleep 50000; echo hello; done") out, _ := dockerCmd(c, "run", "-d", "--log-opt", "max-size=1b", "--log-opt", "max-file=10", "busybox", "sh", "-c", "while true; do usleep 50000; echo hello; done")
id := strings.TrimSpace(out) id := strings.TrimSpace(out)
ch := make(chan error, 1) ch := make(chan error, 1)