test_vars_unix.go 330 B

1234567891011121314
  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. )