mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add clarification of multiple "go test" calls in hack/make/*test
This commit is contained in:
parent
d589cc3622
commit
5cdb3aec50
2 changed files with 10 additions and 0 deletions
|
@ -22,7 +22,12 @@ bundle_test() {
|
||||||
for test_dir in $(find_test_dirs); do (
|
for test_dir in $(find_test_dirs); do (
|
||||||
set -x
|
set -x
|
||||||
cd $test_dir
|
cd $test_dir
|
||||||
|
|
||||||
|
# Install packages that are dependencies of the tests.
|
||||||
|
# Note: Does not run the tests.
|
||||||
go test -i -ldflags "$LDFLAGS" $BUILDFLAGS
|
go test -i -ldflags "$LDFLAGS" $BUILDFLAGS
|
||||||
|
|
||||||
|
# Run the tests with the optional $TESTFLAGS.
|
||||||
export TEST_DOCKERINIT_PATH=$DEST/../dynbinary/dockerinit-$VERSION
|
export TEST_DOCKERINIT_PATH=$DEST/../dynbinary/dockerinit-$VERSION
|
||||||
go test -v -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS $TESTFLAGS
|
go test -v -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS $TESTFLAGS
|
||||||
) done
|
) done
|
||||||
|
|
|
@ -16,7 +16,12 @@ bundle_test() {
|
||||||
for test_dir in $(find_test_dirs); do (
|
for test_dir in $(find_test_dirs); do (
|
||||||
set -x
|
set -x
|
||||||
cd $test_dir
|
cd $test_dir
|
||||||
|
|
||||||
|
# Install packages that are dependencies of the tests.
|
||||||
|
# Note: Does not run the tests.
|
||||||
go test -i -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS
|
go test -i -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS
|
||||||
|
|
||||||
|
# Run the tests with the optional $TESTFLAGS.
|
||||||
go test -v -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS $TESTFLAGS
|
go test -v -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS $TESTFLAGS
|
||||||
) done
|
) done
|
||||||
} 2>&1 | tee $DEST/test.log
|
} 2>&1 | tee $DEST/test.log
|
||||||
|
|
Loading…
Reference in a new issue