reg/vendor/github.com/docker/docker-ce/components/engine/integration-cli/test_vars_test.go
Jess Frazelle ab6c553e6b
update deps
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-06 10:41:43 -05:00

12 lines
367 B
Go

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 {
if testEnv.OSType == "windows" {
return []string{"sleep", "240"}
}
return []string{"top"}
}