1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
Fix hanging on tests failing
This commit is contained in:
Tianon Gravi 2014-05-19 16:37:19 -06:00
commit 05c3325a02
3 changed files with 6 additions and 4 deletions

View file

@ -10,6 +10,6 @@ bundle_test_integration() {
# this "grep" hides some really irritating warnings that "go test -coverpkg"
# spews when it is given packages that aren't used
exec > >(tee -a $DEST/test.log) 2>&1
bundle_test_integration 2>&1 \
| grep --line-buffered -v '^warning: no packages being tested depend on ' \
| tee $DEST/test.log
| grep --line-buffered -v '^warning: no packages being tested depend on '

View file

@ -11,6 +11,7 @@ bundle_test_integration_cli() {
}
# subshell so that we can export PATH without breaking other things
exec > >(tee -a $DEST/test.log) 2>&1
(
export PATH="$DEST/../binary:$DEST/../dynbinary:$PATH"
@ -40,4 +41,4 @@ bundle_test_integration_cli() {
DOCKERD_PID=$(set -x; cat $DEST/docker.pid)
( set -x; kill $DOCKERD_PID )
wait $DOCKERD_PID || true
) 2>&1 | tee $DEST/test.log
)

View file

@ -49,7 +49,8 @@ bundle_test_unit() {
echo
true
fi
} 2>&1 | tee $DEST/test.log
}
}
exec > >(tee -a $DEST/test.log) 2>&1
bundle_test_unit