Esempio n. 1
0
func Test(t *testing.T) {
	reexec.Init() // This is required for external graphdriver tests

	if !isLocalDaemon {
		fmt.Println("INFO: Testing against a remote daemon")
	} else {
		fmt.Println("INFO: Testing against a local daemon")
	}

	check.TestingT(t)
}
Esempio n. 2
0
func Test(t *testing.T) {
	reexec.Init() // This is required for external graphdriver tests

	if !isLocalDaemon {
		fmt.Println("INFO: Testing against a remote daemon")
	} else {
		fmt.Println("INFO: Testing against a local daemon")
	}

	if daemonPlatform == "linux" {
		ensureFrozenImagesLinux(t)
	}
	check.TestingT(t)
}
Esempio n. 3
0
func Test(t *testing.T) {
	check.TestingT(t)
}
Esempio n. 4
0
func Test(t *testing.T) {
	os.Args = []string{os.Args[0], "-check.vv", "true"}
	check.TestingT(t)
}
Esempio n. 5
0
func Test(t *testing.T) {
	if daemonPlatform == "linux" {
		ensureFrozenImagesLinux(t)
	}
	check.TestingT(t)
}