1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix dyntest and rename it to dyntest-unit to match the test-unit rename

Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
This commit is contained in:
Tianon Gravi 2014-06-19 15:05:42 -06:00
parent 2eac1c4bc5
commit 986a151b8a
2 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ DEFAULT_BUNDLES=(
test-integration-cli test-integration-cli
dynbinary dynbinary
dyntest dyntest-unit
dyntest-integration dyntest-integration
cover cover

View file

@ -5,7 +5,7 @@ DEST=$1
INIT=$DEST/../dynbinary/dockerinit-$VERSION INIT=$DEST/../dynbinary/dockerinit-$VERSION
if [ ! -x "$INIT" ]; then if [ ! -x "$INIT" ]; then
echo >&2 'error: dynbinary must be run before dyntest' echo >&2 'error: dynbinary must be run before dyntest-unit'
false false
fi fi
@ -14,5 +14,5 @@ fi
export LDFLAGS_STATIC_DOCKER=" export LDFLAGS_STATIC_DOCKER="
-X github.com/dotcloud/docker/dockerversion.INITSHA1 \"$DOCKER_INITSHA1\" -X github.com/dotcloud/docker/dockerversion.INITSHA1 \"$DOCKER_INITSHA1\"
" "
source "$(dirname "$BASH_SOURCE")/test" source "$(dirname "$BASH_SOURCE")/test-unit"
) )