diff --git a/hack/make/dyntest b/hack/make/dyntest index 848ed8b5cc..67680625e9 100644 --- a/hack/make/dyntest +++ b/hack/make/dyntest @@ -22,8 +22,9 @@ bundle_test() { for test_dir in $(find_test_dirs); do ( set -x cd $test_dir + go test -i export TEST_DOCKERINIT_PATH=$DEST/../dynbinary/dockerinit-$VERSION - go test -v -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS + go test -v -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS $TESTFLAGS ) done } 2>&1 | tee $DEST/test.log }