From c4d547ce617328c442a1acd090ef26728fc88c6f Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 20 Jul 2017 11:37:12 -0700 Subject: [PATCH] Add go-autogen to integration tests Integration test were failing in trial runs for docker-ce 17.07 due to the lack of go-autogen being sourced in `hack/make.sh`. This re-adds go-autogen to be sourced for test-integration-cli so that we can actually run tests without the error found in: https://github.com/moby/moby/pull/33857 Signed-off-by: Eli Uriegas (cherry picked from commit 3cdd471cac8193c34d8483255065c6c28a7b1645) Signed-off-by: Eli Uriegas --- components/engine/hack/make/test-integration-cli | 1 + 1 file changed, 1 insertion(+) diff --git a/components/engine/hack/make/test-integration-cli b/components/engine/hack/make/test-integration-cli index c8137f4313..61e2f7a7f8 100755 --- a/components/engine/hack/make/test-integration-cli +++ b/components/engine/hack/make/test-integration-cli @@ -1,6 +1,7 @@ #!/usr/bin/env bash set -e +source "${MAKEDIR}/.go-autogen" source hack/make/.integration-test-helpers # subshell so that we can export PATH without breaking other things