test_vars_windows_test.go 241 B

123456789101112
  1. //go:build windows
  2. // +build windows
  3. package main
  4. const (
  5. // identifies if test suite is running on a unix platform
  6. isUnixCli = false
  7. // this is the expected file permission set on windows: gh#11395
  8. expectedFileChmod = "-rwxr-xr-x"
  9. )