Skip to content

Commit f4fec25

Browse files
committed
ci: minor formatting cleanups to test output
1 parent adaa037 commit f4fec25

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ci/test.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ echo "##########################################################################
8383
if [ -z "$SKIP_GITDAEMON_TESTS" ]; then
8484
echo "Starting git daemon..."
8585
GITDAEMON_DIR=`mktemp -d ${TMPDIR}/gitdaemon.XXXXXXXX`
86-
git init --bare "${GITDAEMON_DIR}/test.git"
86+
git init --bare "${GITDAEMON_DIR}/test.git" >/dev/null
8787
git daemon --listen=localhost --export-all --enable=receive-pack --base-path="${GITDAEMON_DIR}" "${GITDAEMON_DIR}" 2>/dev/null &
8888
GITDAEMON_PID=$!
8989
disown $GITDAEMON_PID
@@ -112,10 +112,11 @@ if [ -z "$SKIP_NTLM_TESTS" -o -z "$SKIP_ONLINE_TESTS" ]; then
112112
fi
113113

114114
if [ -z "$SKIP_SSH_TESTS" ]; then
115+
echo ""
115116
echo "Starting ssh daemon..."
116117
HOME=`mktemp -d ${TMPDIR}/home.XXXXXXXX`
117118
SSHD_DIR=`mktemp -d ${TMPDIR}/sshd.XXXXXXXX`
118-
git init --bare "${SSHD_DIR}/test.git"
119+
git init --bare "${SSHD_DIR}/test.git" >/dev/null
119120
cat >"${SSHD_DIR}/sshd_config" <<-EOF
120121
Port 2222
121122
ListenAddress 0.0.0.0

0 commit comments

Comments
 (0)