Merge pull request #6554 from tianon/fix-dyntest

Fix dyntest and rename it to dyntest-unit to match the test-unit rename
This commit is contained in:
Tianon Gravi
2014-06-19 16:04:24 -06:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ DEFAULT_BUNDLES=(
test-integration-cli
dynbinary
dyntest
dyntest-unit
dyntest-integration
cover
+2 -2
View File
@@ -5,7 +5,7 @@ DEST=$1
INIT=$DEST/../dynbinary/dockerinit-$VERSION
if [ ! -x "$INIT" ]; then
echo >&2 'error: dynbinary must be run before dyntest'
echo >&2 'error: dynbinary must be run before dyntest-unit'
false
fi
@@ -14,5 +14,5 @@ fi
export LDFLAGS_STATIC_DOCKER="
-X github.com/dotcloud/docker/dockerversion.INITSHA1 \"$DOCKER_INITSHA1\"
"
source "$(dirname "$BASH_SOURCE")/test"
source "$(dirname "$BASH_SOURCE")/test-unit"
)