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

Merge pull request #2808 from tianon/run-all-tests

Update test scripts to always run ALL tests, even when some fail
This commit is contained in:
Victor Vieux 2013-11-28 16:58:31 -08:00
commit 668d22be54
2 changed files with 55 additions and 21 deletions

View file

@ -19,7 +19,12 @@ fi
bundle_test() { bundle_test() {
{ {
date date
for test_dir in $(find_test_dirs); do (
TESTS_FAILED=()
for test_dir in $(find_test_dirs); do
echo
if ! (
set -x set -x
cd $test_dir cd $test_dir
@ -30,7 +35,19 @@ bundle_test() {
# Run the tests with the optional $TESTFLAGS. # 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 ); then
TESTS_FAILED+=("$test_dir")
sleep 1 # give it a second, so observers watching can take note
fi
done
# if some tests fail, we want the bundlescript to fail, but we want to
# try running ALL the tests first, hence TESTS_FAILED
if [ "${#TESTS_FAILED[@]}" -gt 0 ]; then
echo
echo "Test failures in: ${TESTS_FAILED[@]}"
false
fi
} 2>&1 | tee $DEST/test.log } 2>&1 | tee $DEST/test.log
} }

View file

@ -13,7 +13,12 @@ set -e
bundle_test() { bundle_test() {
{ {
date date
for test_dir in $(find_test_dirs); do (
TESTS_FAILED=()
for test_dir in $(find_test_dirs); do
echo
if ! (
set -x set -x
cd $test_dir cd $test_dir
@ -23,7 +28,19 @@ bundle_test() {
# Run the tests with the optional $TESTFLAGS. # 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 ); then
TESTS_FAILED+=("$test_dir")
sleep 1 # give it a second, so observers watching can take note
fi
done
# if some tests fail, we want the bundlescript to fail, but we want to
# try running ALL the tests first, hence TESTS_FAILED
if [ "${#TESTS_FAILED[@]}" -gt 0 ]; then
echo
echo "Test failures in: ${TESTS_FAILED[@]}"
false
fi
} 2>&1 | tee $DEST/test.log } 2>&1 | tee $DEST/test.log
} }