From 0c9b319dd0c29621c76cf63d494c9781e3f4ea00 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Wed, 23 Oct 2013 07:08:45 +0000 Subject: [PATCH] Hack: fix test and dyntest to correctly use $TESTFLAGS --- hack/make/dyntest | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 }