mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
18 lines
369 B
Go
18 lines
369 B
Go
package docker
|
|
|
|
import (
|
|
"github.com/dotcloud/docker/utils"
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
func displayFdGoroutines(t *testing.T) {
|
|
t.Logf("Fds: %d, Goroutines: %d", utils.GetTotalUsedFds(), runtime.NumGoroutine())
|
|
}
|
|
|
|
func TestFinal(t *testing.T) {
|
|
cleanup(globalRuntime)
|
|
t.Logf("Start Fds: %d, Start Goroutines: %d", startFds, startGoroutines)
|
|
displayFdGoroutines(t)
|
|
}
|