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

hack: don't set DEBUG when running tests

This commit is contained in:
Solomon Hykes 2013-10-15 23:07:26 +00:00
parent ec885d9180
commit 3997b8a923

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
DEBUG=1 go test -v -ldflags "$LDFLAGS" $BUILDFLAGS $TESTFLAGS go test -v -ldflags "$LDFLAGS" $BUILDFLAGS $TESTFLAGS
) done ) done
} 2>&1 | tee $DEST/test.log } 2>&1 | tee $DEST/test.log
} }