mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c30a55f14d
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
18 lines
402 B
Go
18 lines
402 B
Go
package docker
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/pkg/fileutils"
|
|
)
|
|
|
|
func displayFdGoroutines(t *testing.T) {
|
|
t.Logf("File Descriptors: %d, Goroutines: %d", fileutils.GetTotalUsedFds(), runtime.NumGoroutine())
|
|
}
|
|
|
|
func TestFinal(t *testing.T) {
|
|
nuke(globalDaemon)
|
|
t.Logf("Start File Descriptors: %d, Start Goroutines: %d", startFds, startGoroutines)
|
|
displayFdGoroutines(t)
|
|
}
|