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"
d6e7dc79
 
 	// On Windows, the busybox image doesn't have the `top` command, so we rely
 	// on `sleep` with a high duration.
 	defaultSleepImage = "busybox"
492a58f0
 )
d6e7dc79
 
 var defaultSleepCommand = []string{"sleep", "60"}