mirror of
https://github.com/docker/cli.git
synced 2026-01-16 20:22:36 +03:00
We unmount all mounts and deactivate all device mapper devices to make sure we're left with no leftovers after the test. Upstream-commit: ed741f7b27b1b1cf5b6f8917551ce86bc39e9c78 Component: engine
18 lines
373 B
Go
18 lines
373 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) {
|
|
cleanupLast(globalRuntime)
|
|
t.Logf("Start Fds: %d, Start Goroutines: %d", startFds, startGoroutines)
|
|
displayFdGoroutines(t)
|
|
}
|