test_vars_windows_test.go 223 B

1234567891011
  1. //go: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. )