test_vars_windows.go 501 B

123456789101112131415161718
  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. // TODO Windows: In TP5, decrease this sleep time, as performance will be better
  13. var defaultSleepCommand = []string{"sleep", "240"}