integration-cli/test_vars_windows.go
492a58f0
 // +build windows
 
 package main
 
 const (
5d615dff
 	// identifies if test suite is running on a unix platform
492a58f0
 	isUnixCli = false
1a22418f
 
b7dc9040
 	// this is the expected file permission set on windows: gh#11395
 	expectedFileChmod = "-rwxr-xr-x"
777ee34b
 
 	// On Windows, the busybox image doesn't have the `top` command, so we rely
 	// on `sleep` with a high duration.
 	defaultSleepImage = "busybox"
492a58f0
 )
777ee34b
 
ad7398e6
 // TODO Windows: In TP5, decrease this sleep time, as performance will be better
b756f89e
 var defaultSleepCommand = []string{"sleep", "240"}