Last active
July 17, 2018 14:00
-
-
Save poizan42/f27236cbca989e4988d95d6e3a27bf78 to your computer and use it in GitHub Desktop.
Output from docker make test-unit, https://github.com/moby/moby/issues/37480
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Makefile:126: The docker client CLI has moved to github.com/docker/cli. For a dev-test cycle involving the CLI, run: | |
DOCKER_CLI_PATH=/host/path/to/cli/binary make shell | |
then change the cli and compile into a binary at the same location. | |
docker build -t "docker-dev:master" -f "Dockerfile" . | |
Sending build context to Docker daemon 251.1MB | |
Step 1/94 : FROM golang:1.10.3 AS base | |
---> 4e611157870f | |
Step 2/94 : ENV GO_VERSION 1.10.3 | |
---> Using cache | |
---> c799facc43c9 | |
Step 3/94 : ARG APT_MIRROR=deb.debian.org | |
---> Using cache | |
---> 3335b3ea6492 | |
Step 4/94 : RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list | |
---> Using cache | |
---> 2db3261e33b0 | |
Step 5/94 : FROM base AS criu | |
---> 2db3261e33b0 | |
Step 6/94 : ENV CRIU_VERSION 3.6 | |
---> Using cache | |
---> 437d78c40d43 | |
Step 7/94 : RUN apt-get update && apt-get install -y libnet-dev libprotobuf-c0-dev libprotobuf-dev libnl-3-dev libcap-dev protobuf-compiler protobuf-c-compiler python-protobuf && mkdir -p /usr/src/criu && curl -sSL https://github.com/checkpoint-restore/criu/archive/v${CRIU_VERSION}.tar.gz | tar -C /usr/src/criu/ -xz --strip-components=1 && cd /usr/src/criu && make && make PREFIX=/build/ install-criu | |
---> Using cache | |
---> 7c5bdcfebc2e | |
Step 8/94 : FROM base AS registry | |
---> 2db3261e33b0 | |
Step 9/94 : ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd | |
---> Using cache | |
---> d8b8db8166ed | |
Step 10/94 : ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827 | |
---> Using cache | |
---> c29c3433f95a | |
Step 11/94 : RUN set -x && export GOPATH="$(mktemp -d)" && git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" && (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") && GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" go build -buildmode=pie -o /build/registry-v2 github.com/docker/distribution/cmd/registry && case $(dpkg --print-architecture) in amd64|ppc64*|s390x) (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1"); GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH"; go build -buildmode=pie -o /build/registry-v2-schema1 github.com/docker/distribution/cmd/registry; ;; esac && rm -rf "$GOPATH" | |
---> Using cache | |
---> 486c83ed5d26 | |
Step 12/94 : FROM base AS docker-py | |
---> 2db3261e33b0 | |
Step 13/94 : ENV DOCKER_PY_COMMIT 8b246db271a85d6541dc458838627e89c683e42f | |
---> Using cache | |
---> 8ca58e0fbe47 | |
Step 14/94 : RUN git clone https://github.com/docker/docker-py.git /build && cd /build && git checkout -q $DOCKER_PY_COMMIT | |
---> Using cache | |
---> 3787b56bb04c | |
Step 15/94 : FROM base AS swagger | |
---> 2db3261e33b0 | |
Step 16/94 : ENV GO_SWAGGER_COMMIT c28258affb0b6251755d92489ef685af8d4ff3eb | |
---> Using cache | |
---> 4cbc31cbf376 | |
Step 17/94 : RUN set -x && export GOPATH="$(mktemp -d)" && git clone https://github.com/go-swagger/go-swagger.git "$GOPATH/src/github.com/go-swagger/go-swagger" && (cd "$GOPATH/src/github.com/go-swagger/go-swagger" && git checkout -q "$GO_SWAGGER_COMMIT") && go build -o /build/swagger github.com/go-swagger/go-swagger/cmd/swagger && rm -rf "$GOPATH" | |
---> Using cache | |
---> 96f7675cfeee | |
Step 18/94 : FROM base AS frozen-images | |
---> 2db3261e33b0 | |
Step 19/94 : RUN apt-get update && apt-get install -y jq ca-certificates --no-install-recommends | |
---> Using cache | |
---> 165a97787f07 | |
Step 20/94 : COPY contrib/download-frozen-image-v2.sh / | |
---> Using cache | |
---> 0db68a0c0d27 | |
Step 21/94 : RUN /download-frozen-image-v2.sh /build buildpack-deps:jessie@sha256:dd86dced7c9cd2a724e779730f0a53f93b7ef42228d4344b25ce9a42a1486251 busybox:latest@sha256:bbc3a03235220b170ba48a157dd097dd1379299370e1ed99ce976df0355d24f0 busybox:glibc@sha256:0b55a30394294ab23b9afd58fab94e61a923f5834fba7ddbae7f8e0c11ba85e6 debian:jessie@sha256:287a20c5f73087ab406e6b364833e3fb7b3ae63ca0eb3486555dc27ed32c6e60 hello-world:latest@sha256:be0cd392e45be79ffeffa6b05338b98ebb16c87b255f48e297ec7f98e123905c | |
---> Using cache | |
---> 667ee7c498a6 | |
Step 22/94 : FROM base AS runtime-dev | |
---> 2db3261e33b0 | |
Step 23/94 : RUN apt-get update && apt-get install -y libapparmor-dev libseccomp-dev | |
---> Using cache | |
---> 74f03f8f796b | |
Step 24/94 : FROM base AS tomlv | |
---> 2db3261e33b0 | |
Step 25/94 : ENV INSTALL_BINARY_NAME=tomlv | |
---> Using cache | |
---> f17f5ba16e46 | |
Step 26/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> 1e6b5b64d33d | |
Step 27/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> accccb232375 | |
Step 28/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> e181605c3ce8 | |
Step 29/94 : FROM base AS vndr | |
---> 2db3261e33b0 | |
Step 30/94 : ENV INSTALL_BINARY_NAME=vndr | |
---> Using cache | |
---> 15728dffa362 | |
Step 31/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> bdbd80fe5a6a | |
Step 32/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> cc005f0f2286 | |
Step 33/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> 79e92b9142c0 | |
Step 34/94 : FROM base AS containerd | |
---> 2db3261e33b0 | |
Step 35/94 : RUN apt-get update && apt-get install -y btrfs-tools | |
---> Using cache | |
---> 55f5cac6ffcb | |
Step 36/94 : ENV INSTALL_BINARY_NAME=containerd | |
---> Using cache | |
---> 1da73d8ebed9 | |
Step 37/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> 8906a03d9d4e | |
Step 38/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> 4b1be5b40297 | |
Step 39/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> de62b7842a45 | |
Step 40/94 : FROM base AS proxy | |
---> 2db3261e33b0 | |
Step 41/94 : ENV INSTALL_BINARY_NAME=proxy | |
---> Using cache | |
---> b9d1e66c1d64 | |
Step 42/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> f3ca4e6e2e45 | |
Step 43/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> 1f9963222889 | |
Step 44/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> 58cbf85bcb0d | |
Step 45/94 : FROM base AS gometalinter | |
---> 2db3261e33b0 | |
Step 46/94 : ENV INSTALL_BINARY_NAME=gometalinter | |
---> Using cache | |
---> 13e288151f26 | |
Step 47/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> 8ae834e92638 | |
Step 48/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> 7b8dff3f40c8 | |
Step 49/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> ecfb3c7ebfa9 | |
Step 50/94 : FROM base AS dockercli | |
---> 2db3261e33b0 | |
Step 51/94 : ENV INSTALL_BINARY_NAME=dockercli | |
---> Using cache | |
---> 79753b09f410 | |
Step 52/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> 9cced499b4fc | |
Step 53/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> 42dfb0dbb50b | |
Step 54/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> ca2f546a9489 | |
Step 55/94 : FROM runtime-dev AS runc | |
---> 74f03f8f796b | |
Step 56/94 : ENV INSTALL_BINARY_NAME=runc | |
---> Using cache | |
---> 5373a2ad0df2 | |
Step 57/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> 4284e5bc84d3 | |
Step 58/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> 033f7ba7bea5 | |
Step 59/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> 088f1256427d | |
Step 60/94 : FROM base AS tini | |
---> 2db3261e33b0 | |
Step 61/94 : RUN apt-get update && apt-get install -y cmake vim-common | |
---> Using cache | |
---> a426465720a9 | |
Step 62/94 : COPY hack/dockerfile/install/install.sh ./install.sh | |
---> Using cache | |
---> 229f49c871bd | |
Step 63/94 : ENV INSTALL_BINARY_NAME=tini | |
---> Using cache | |
---> 606fde2e23ff | |
Step 64/94 : COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./ | |
---> Using cache | |
---> cc845697935c | |
Step 65/94 : RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME | |
---> Using cache | |
---> 3717a546eabf | |
Step 66/94 : FROM runtime-dev AS dev | |
---> 74f03f8f796b | |
Step 67/94 : RUN groupadd -r docker | |
---> Using cache | |
---> 9c1941038df1 | |
Step 68/94 : RUN useradd --create-home --gid docker unprivilegeduser | |
---> Using cache | |
---> 968d107867be | |
Step 69/94 : RUN ln -sfv /go/src/github.com/docker/docker/.bashrc ~/.bashrc | |
---> Using cache | |
---> 7e1f6cb70cfb | |
Step 70/94 : RUN echo "source /usr/share/bash-completion/bash_completion" >> /etc/bash.bashrc | |
---> Using cache | |
---> bcfb9d6c462a | |
Step 71/94 : RUN ln -s /usr/local/completion/bash/docker /etc/bash_completion.d/docker | |
---> Using cache | |
---> c26bc2398f2b | |
Step 72/94 : RUN ldconfig | |
---> Using cache | |
---> e80a6c7a6227 | |
Step 73/94 : RUN apt-get update && apt-get install -y apparmor aufs-tools bash-completion btrfs-tools iptables jq libdevmapper-dev libudev-dev libsystemd-dev binutils-mingw-w64 g++-mingw-w64-x86-64 net-tools pigz python-backports.ssl-match-hostname python-dev python-mock python-pip python-requests python-setuptools python-websocket python-wheel thin-provisioning-tools vim vim-common xfsprogs zip bzip2 xz-utils --no-install-recommends | |
---> Using cache | |
---> e7b24a86d290 | |
Step 74/94 : COPY --from=swagger /build/swagger* /usr/local/bin/ | |
---> Using cache | |
---> 62911f1382f0 | |
Step 75/94 : COPY --from=frozen-images /build/ /docker-frozen-images | |
---> Using cache | |
---> 1d4b274263ca | |
Step 76/94 : COPY --from=gometalinter /build/ /usr/local/bin/ | |
---> Using cache | |
---> cbdaf54d27ca | |
Step 77/94 : COPY --from=tomlv /build/ /usr/local/bin/ | |
---> Using cache | |
---> d27088862b73 | |
Step 78/94 : COPY --from=vndr /build/ /usr/local/bin/ | |
---> Using cache | |
---> cd578512fb40 | |
Step 79/94 : COPY --from=tini /build/ /usr/local/bin/ | |
---> Using cache | |
---> 32125adaf06f | |
Step 80/94 : COPY --from=runc /build/ /usr/local/bin/ | |
---> Using cache | |
---> 8f15a966c6e1 | |
Step 81/94 : COPY --from=containerd /build/ /usr/local/bin/ | |
---> Using cache | |
---> ff0e8b3d332d | |
Step 82/94 : COPY --from=proxy /build/ /usr/local/bin/ | |
---> Using cache | |
---> 91a87e50541d | |
Step 83/94 : COPY --from=dockercli /build/ /usr/local/cli | |
---> Using cache | |
---> a0a23654e768 | |
Step 84/94 : COPY --from=registry /build/registry* /usr/local/bin/ | |
---> Using cache | |
---> 7e0976fd70ab | |
Step 85/94 : COPY --from=criu /build/ /usr/local/ | |
---> Using cache | |
---> eebea6de3bad | |
Step 86/94 : COPY --from=docker-py /build/ /docker-py | |
---> Using cache | |
---> 72bff0343ae6 | |
Step 87/94 : RUN cd /docker-py && pip install docker-pycreds==0.2.1 && pip install yamllint==1.5.0 && pip install -r test-requirements.txt | |
---> Using cache | |
---> 54373c24326c | |
Step 88/94 : ENV PATH=/usr/local/cli:$PATH | |
---> Using cache | |
---> 4321e9a476ea | |
Step 89/94 : ENV DOCKER_BUILDTAGS apparmor seccomp selinux | |
---> Using cache | |
---> 23725854cc73 | |
Step 90/94 : ENV GOMETALINTER_OPTS="--deadline=2m" | |
---> Using cache | |
---> e785558658be | |
Step 91/94 : WORKDIR /go/src/github.com/docker/docker | |
---> Using cache | |
---> c12a8a7969a3 | |
Step 92/94 : VOLUME /var/lib/docker | |
---> Using cache | |
---> 77e4f632f46d | |
Step 93/94 : ENTRYPOINT ["hack/dind"] | |
---> Using cache | |
---> e5654be2f908 | |
Step 94/94 : COPY . /go/src/github.com/docker/docker | |
---> Using cache | |
---> f0d6fd60c35b | |
Successfully built f0d6fd60c35b | |
Successfully tagged docker-dev:master | |
docker run --rm -i --privileged -e DOCKER_CROSSPLATFORMS -e BUILD_APT_MIRROR -e BUILDFLAGS -e KEEPBUNDLE -e DOCKER_BUILD_ARGS -e DOCKER_BUILD_GOGC -e DOCKER_BUILD_PKGS -e DOCKER_BUILDKIT -e DOCKER_BASH_COMPLETION_PATH -e DOCKER_CLI_PATH -e DOCKER_DEBUG -e DOCKER_EXPERIMENTAL -e DOCKER_GITCOMMIT -e DOCKER_GRAPHDRIVER -e DOCKER_INCREMENTAL_BINARY -e DOCKER_LDFLAGS -e DOCKER_PORT -e DOCKER_REMAP_ROOT -e DOCKER_STORAGE_OPTS -e DOCKER_USERLANDPROXY -e DOCKERD_ARGS -e TEST_INTEGRATION_DIR -e TESTDIRS -e TESTFLAGS -e TIMEOUT -e HTTP_PROXY -e HTTPS_PROXY -e NO_PROXY -e http_proxy -e https_proxy -e no_proxy -e VERSION -e PLATFORM -v "/home/kbr/moby/bundles:/go/src/github.com/docker/docker/bundles" -v "/home/kbr/moby/.git:/go/src/github.com/docker/docker/.git" -v "dockerdev-go-pkg-cache-gopath:/go/pkg" -v "dockerdev-go-pkg-cache-goroot-linux_amd64:/usr/local/go/pkg/linux_amd64" -v "dockerdev-go-pkg-cache-goroot-linux_amd64_netgo:/usr/local/go/pkg/linux_amd64_netgo" -t "docker-dev:master" hack/test/unit | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/doc/progs: found packages rand (cgo1.go) and rand2 (cgo2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/doc/progs | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/misc/cgo/errors: found packages main (err1.go) and pkg (issue13635.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/misc/cgo/errors | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/misc/cgo/testcarchive: C source files not allowed when not using cgo or SWIG: main.c main2.c main3.c main4.c main5.c main_unix.c | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/constant: code in directory /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/constant expects import "go/constant" | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/internal/gccgoimporter: code in directory /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/internal/gccgoimporter expects import "go/internal/gccgoimporter" | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/internal/gcimporter: code in directory /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/internal/gcimporter expects import "go/internal/gcimporter" | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/types: code in directory /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/src/go/types expects import "go/types" | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test: found packages main (235.go) and _ (blank1.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/ddd2.dir: found packages ddd (ddd2.go) and main (ddd3.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/ddd2.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/dwarf: found packages ignored (dwarf.go) and main (linedirectives.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/dwarf | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs: | |
bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug050.go:7:1: expected 'package', found 'func' | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug083.dir: found packages bug0 (bug0.go) and bug1 (bug1.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug083.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug088.dir: found packages bug0 (bug0.go) and main (bug1.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug088.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug106.dir: found packages bug0 (bug0.go) and bug1 (bug1.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug106.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug133.dir: found packages bug0 (bug0.go) and bug1 (bug1.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug133.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug160.dir: found packages x (x.go) and main (y.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug160.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug191.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug191.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug222.dir: found packages chanbug (chanbug.go) and Bar (chanbug2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug222.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug248.dir: found packages p (bug0.go) and main (bug2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug248.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug282.dir: found packages p1 (p1.go) and p2 (p2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug282.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug302.dir: found packages main (main.go) and p (p.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug302.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug306.dir: found packages p1 (p1.go) and p2 (p2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug306.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug322.dir: found packages lib (lib.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug322.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug324.dir: found packages p (p.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug324.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug335.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug335.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug345.dir: found packages io (io.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug345.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug367.dir: found packages p (p.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug367.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug369.dir: found packages main (main.go) and pkg (pkg.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug369.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug377.dir: found packages one (one.go) and two (two.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug377.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug382.dir: found packages pkg (pkg.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug382.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug392.dir: found packages one (one.go) and pkg2 (pkg2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug392.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug396.dir: found packages one (one.go) and two (two.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug396.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug404.dir: found packages one (one.go) and two (two.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug404.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug407.dir: found packages one (one.go) and two (two.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug407.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug414.dir: found packages p1 (p1.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug414.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug415.dir: found packages p (p.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug415.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug424.dir: found packages lib (lib.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug424.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug437.dir: found packages one (one.go) and two (two.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug437.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug448.dir: found packages pkg1 (pkg1.go) and pkg2 (pkg2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug448.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug460.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug460.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug465.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug465.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug466.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug466.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug467.dir: found packages p1 (p1.go) and p2 (p2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug467.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug468.dir: found packages p1 (p1.go) and main (p2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug468.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug472.dir: found packages p1 (p1.go) and p2 (p2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug472.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug478.dir: found packages p1 (a.go) and p2 (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug478.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug479.dir: found packages p (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug479.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug480.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug480.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug492.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/bug492.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/gcc67968.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/gcc67968.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue10066.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue10066.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue10219.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue10219.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue10700.dir: found packages other (other.go) and main (test.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue10700.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue11053.dir: found packages p (p.go) and main (p_test.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue11053.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue12677.dir: found packages p (p.go) and q (q.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue12677.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue13777.dir: found packages burnin (burnin.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue13777.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue14164.dir: found packages a (a.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue14164.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue14331.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue14331.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15470.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15470.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15548.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15548.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15572.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15572.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15646.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15646.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15838.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15838.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15920.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue15920.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue16133.dir: found packages a (a1.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue16133.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue3552.dir: found packages one (one.go) and two (two.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue3552.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4252.dir: found packages a (a.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4252.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4326.dir: found packages p1 (p1.go) and p2 (p2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4326.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4370.dir: found packages p1 (p1.go) and p2 (p2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4370.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4590.dir: found packages pkg1 (pkg1.go) and pkg2 (pkg2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4590.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4879.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4879.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4932.dir: found packages foo (foo.go) and state (state.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4932.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4964.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue4964.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5105.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5105.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5125.dir: found packages bug (bug.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5125.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5259.dir: found packages bug (bug.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5259.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5260.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5260.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5291.dir: found packages pkg1 (pkg1.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5291.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5470.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5470.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5614.dir: found packages rethinkgo (rethinkgo.go) and x (x.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5614.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5755.dir: found packages a (a.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5755.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5910.dir: found packages a (a.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5910.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5957.dir: found packages surprise (a.go) and surprise2 (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue5957.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue6295.dir: found packages p0 (p0.go) and p1 (p1.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue6295.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue6513.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue6513.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue6789.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue6789.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue7023.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue7023.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue7648.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue7648.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue7995b.dir: found packages x1 (x1.go) and main (x2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue7995b.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue8060.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue8060.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue8280.dir: found packages a (a.go) and b (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue8280.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue9537.dir: found packages a (a.go) and main (b.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/fixedbugs/issue9537.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/import2.dir: found packages p (import2.go) and main (import3.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/import2.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/import4.dir: found packages empty (empty.go) and main (import4.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/import4.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface: found packages p (assertinline.go) and main (bigdata.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface/embed1.dir: found packages p (embed0.go) and main (embed1.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface/embed1.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface/private.dir: found packages p (private1.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface/private.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface/recursive1.dir: found packages p (recursive1.go) and main (recursive2.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/interface/recursive1.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/method4.dir: found packages method4a (method4a.go) and main (prog.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/method4.dir | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/safe: found packages main (main.go) and ignored (nousesafe.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/safe | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/syntax: | |
bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/syntax/import.go:10:6: expected ';', found ',' | |
can't load package: package github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/uintptrescapes.dir: found packages a (a.go) and main (main.go) in /go/src/github.com/docker/docker/bundles/test-integration/d3f57cf0ef098/root/plugins/9fd92b43c06f5992f08cc5b21f3db0bf29dac26e8134ba4b2fa85c6a25d86279/rootfs/usr/local/go/test/uintptrescapes.dir | |
Makefile:169: recipe for target 'test-unit' failed | |
make: *** [test-unit] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment