Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 52f0474851298e7ba70b1a7ea16e3421d5926c98 Component: engine
15 lines
330 B
Go
15 lines
330 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
const (
|
|
// identifies if test suite is running on a unix platform
|
|
isUnixCli = true
|
|
|
|
expectedFileChmod = "-rw-r--r--"
|
|
|
|
// On Unix variants, the busybox image comes with the `top` command which
|
|
// runs indefinitely while still being interruptible by a signal.
|
|
defaultSleepImage = "busybox"
|
|
)
|