test_vars_windows.go 222 B

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