Fix "go test -i" to include the proper LDFLAGS and BUILDFLAGS

This commit is contained in:
Tianon Gravi 2013-10-23 18:27:41 -06:00 committed by Victor Vieux
parent 66a159342b
commit 640682d56c
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ 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
go test -i go test -i -ldflags "$LDFLAGS" $BUILDFLAGS
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

View File

@ -16,7 +16,7 @@ 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
go test -i go test -i -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS
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