integration-cli/test_vars_test.go
52f04748
 package main
 
 // sleepCommandForDaemonPlatform is a helper function that determines what
 // the command is for a sleeping container based on the daemon platform.
 // The Windows busybox image does not have a `top` command.
 func sleepCommandForDaemonPlatform() []string {
18a771a7
 	if testEnv.OSType == "windows" {
52f04748
 		return []string{"sleep", "240"}
 	}
 	return []string{"top"}
 }