github.com/LazyboyChen7/engine@v17.12.1-ce-rc2+incompatible/integration-cli/test_vars_test.go (about)

     1  package main
     2  
     3  // sleepCommandForDaemonPlatform is a helper function that determines what
     4  // the command is for a sleeping container based on the daemon platform.
     5  // The Windows busybox image does not have a `top` command.
     6  func sleepCommandForDaemonPlatform() []string {
     7  	if testEnv.DaemonPlatform() == "windows" {
     8  		return []string{"sleep", "240"}
     9  	}
    10  	return []string{"top"}
    11  }