2015-02-20 04:37:27 -05:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
const (
|
2015-02-20 12:35:32 -05:00
|
|
|
// identifies if test suite is running on a unix platform
|
2015-02-20 04:37:27 -05:00
|
|
|
isUnixCli = true
|
2015-03-03 21:40:16 -05:00
|
|
|
|
|
|
|
expectedFileChmod = "-rw-r--r--"
|
2016-01-26 23:16:36 -05: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 04:37:27 -05:00
|
|
|
)
|
2016-01-26 23:16:36 -05:00
|
|
|
|
|
|
|
var defaultSleepCommand = []string{"top"}
|