test_vars_windows.go 368 B

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