Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux) Upstream-commit: b3ee9ac74e171e00f14027e39278013629e681b8 Component: engine
18 lines
363 B
Go
18 lines
363 B
Go
package docker
|
|
|
|
import (
|
|
"github.com/docker/docker/utils"
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
func displayFdGoroutines(t *testing.T) {
|
|
t.Logf("Fds: %d, Goroutines: %d", utils.GetTotalUsedFds(), runtime.NumGoroutine())
|
|
}
|
|
|
|
func TestFinal(t *testing.T) {
|
|
nuke(globalDaemon)
|
|
t.Logf("Start Fds: %d, Start Goroutines: %d", startFds, startGoroutines)
|
|
displayFdGoroutines(t)
|
|
}
|