test_vars_windows.go 419 B

1234567891011121314151617
  1. // +build windows
  2. package main
  3. const (
  4. // identifies if test suite is running on a unix platform
  5. isUnixCli = false
  6. // this is the expected file permission set on windows: gh#11395
  7. expectedFileChmod = "-rwxr-xr-x"
  8. // On Windows, the busybox image doesn't have the `top` command, so we rely
  9. // on `sleep` with a high duration.
  10. defaultSleepImage = "busybox"
  11. )
  12. var defaultSleepCommand = []string{"sleep", "60"}