mirror of
https://github.com/docker/cli.git
synced 2026-01-26 15:41:42 +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: c6e8813c979bbea8832f47dc6468e805a1a18c3e 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)
|
|
}
|