2021-08-23 13:14:53 +00:00
|
|
|
//go:build windows
|
2015-02-20 09:37:27 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
const (
|
2015-02-20 17:35:32 +00:00
|
|
|
// identifies if test suite is running on a unix platform
|
2015-02-20 09:37:27 +00:00
|
|
|
isUnixCli = false
|
2015-03-04 02:40:16 +00:00
|
|
|
|
2015-03-15 17:19:15 +00:00
|
|
|
// this is the expected file permission set on windows: gh#11395
|
|
|
|
expectedFileChmod = "-rwxr-xr-x"
|
2015-02-20 09:37:27 +00:00
|
|
|
)
|