예제 #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)
}
예제 #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)
}
예제 #3
0
파일: check_test.go 프로젝트: runcom/skopeo
func Test(t *testing.T) {
	check.TestingT(t)
}
예제 #4
0
파일: root_test.go 프로젝트: romana/core
func Test(t *testing.T) {
	os.Args = []string{os.Args[0], "-check.vv", "true"}
	check.TestingT(t)
}
예제 #5
0
func Test(t *testing.T) {
	if daemonPlatform == "linux" {
		ensureFrozenImagesLinux(t)
	}
	check.TestingT(t)
}