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
Родитель 2eac1c4bc5
Коммит 986a151b8a
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

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

Просмотреть файл

@ -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"
)