2015-02-20 01:37:27 -08:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
const (
|
2015-02-20 09:35:32 -08:00
|
|
|
// identifies if test suite is running on a unix platform
|
2015-02-20 01:37:27 -08:00
|
|
|
isUnixCli = false
|
2015-03-03 18:40:16 -08:00
|
|
|
|
2015-03-15 10:19:15 -07:00
|
|
|
// this is the expected file permission set on windows: gh#11395
|
|
|
|
expectedFileChmod = "-rwxr-xr-x"
|
2016-01-26 20:16:36 -08:00
|
|
|
|
|
|
|
// On Windows, the busybox image doesn't have the `top` command, so we rely
|
|
|
|
// on `sleep` with a high duration.
|
|
|
|
defaultSleepImage = "busybox"
|
2015-02-20 01:37:27 -08:00
|
|
|
)
|
2016-01-26 20:16:36 -08:00
|
|
|
|
|
|
|
var defaultSleepCommand = []string{"sleep", "60"}
|