2015-02-20 09:37:27 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
const (
|
2015-02-20 17:35:32 +00:00
|
|
|
// identifies if test suite is running on a unix platform
|
2015-02-20 09:37:27 +00:00
|
|
|
isUnixCli = true
|
2015-03-04 02:40:16 +00:00
|
|
|
|
|
|
|
expectedFileChmod = "-rw-r--r--"
|
2016-01-27 04:16:36 +00:00
|
|
|
|
|
|
|
// On Unix variants, the busybox image comes with the `top` command which
|
|
|
|
// runs indefinitely while still being interruptible by a signal.
|
|
|
|
defaultSleepImage = "busybox"
|
2015-02-20 09:37:27 +00:00
|
|
|
)
|
2016-01-27 04:16:36 +00:00
|
|
|
|
|
|
|
var defaultSleepCommand = []string{"top"}
|