github.com/ncdc/docker@v0.10.1-0.20160129113957-6c6729ef5b74/integration-cli/test_vars_unix.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 = true
     8  
     9  	expectedFileChmod = "-rw-r--r--"
    10  
    11  	// On Unix variants, the busybox image comes with the `top` command which
    12  	// runs indefinitely while still being interruptible by a signal.
    13  	defaultSleepImage = "busybox"
    14  )
    15  
    16  var defaultSleepCommand = []string{"top"}