github.com/noxiouz/docker@v0.7.3-0.20160629055221-3d231c78e8c5/integration-cli/test_vars_windows.go (about) 1 // +build windows 2 3 package main 4 5 const ( 6 // identifies if test suite is running on a unix platform 7 isUnixCli = false 8 9 // this is the expected file permission set on windows: gh#11395 10 expectedFileChmod = "-rwxr-xr-x" 11 12 // On Windows, the busybox image doesn't have the `top` command, so we rely 13 // on `sleep` with a high duration. 14 defaultSleepImage = "busybox" 15 ) 16 17 // TODO Windows: In TP5, decrease this sleep time, as performance will be better 18 var defaultSleepCommand = []string{"sleep", "240"}