github.com/amylindburg/docker@v1.7.0/hack/make/test-integration-cli (about)

     1  #!/bin/bash
     2  set -e
     3  
     4  bundle_test_integration_cli() {
     5  	go_test_dir ./integration-cli
     6  }
     7  
     8  # subshell so that we can export PATH without breaking other things
     9  (
    10  	source "${MAKEDIR}/.integration-daemon-start"
    11  
    12  	source "${MAKEDIR}/.ensure-frozen-images"
    13  	source "${MAKEDIR}/.ensure-httpserver"
    14  	source "${MAKEDIR}/.ensure-emptyfs"
    15  
    16  	bundle_test_integration_cli
    17  
    18  	source "${MAKEDIR}/.integration-daemon-stop"
    19  ) 2>&1 | tee -a "$DEST/test.log"