test_vars_unix.go 373 B

12345678910111213141516
  1. // +build !windows
  2. package main
  3. const (
  4. // identifies if test suite is running on a unix platform
  5. isUnixCli = true
  6. expectedFileChmod = "-rw-r--r--"
  7. // On Unix variants, the busybox image comes with the `top` command which
  8. // runs indefinitely while still being interruptible by a signal.
  9. defaultSleepImage = "busybox"
  10. )
  11. var defaultSleepCommand = []string{"top"}