blob: c52f87cddb2ba9929f1765042ac429c22a6c35f3 [file] [log] [blame]
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) {
cleanupLast(globalRuntime)
t.Logf("Start Fds: %d, Start Goroutines: %d", startFds, startGoroutines)
displayFdGoroutines(t)
}