diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2022-01-13 16:54:56 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2022-01-13 16:55:36 -0500 |
commit | f4fec25182eb04ceec05d41e47670b1370ca7420 (patch) | |
tree | 79f4282e64bb312ede1060062b30687eaaeafd08 | |
parent | adaa037d3aa438e5a1fb074ed0d239bf4dd5a18b (diff) | |
download | libgit2-f4fec25182eb04ceec05d41e47670b1370ca7420.tar.gz |
ci: minor formatting cleanups to test outputethomson/follow_redirects_initial
-rwxr-xr-x | ci/test.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/test.sh b/ci/test.sh index e1a0e612d..0dc43aa87 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -83,7 +83,7 @@ echo "########################################################################## if [ -z "$SKIP_GITDAEMON_TESTS" ]; then echo "Starting git daemon..." GITDAEMON_DIR=`mktemp -d ${TMPDIR}/gitdaemon.XXXXXXXX` - git init --bare "${GITDAEMON_DIR}/test.git" + git init --bare "${GITDAEMON_DIR}/test.git" >/dev/null git daemon --listen=localhost --export-all --enable=receive-pack --base-path="${GITDAEMON_DIR}" "${GITDAEMON_DIR}" 2>/dev/null & GITDAEMON_PID=$! disown $GITDAEMON_PID @@ -112,10 +112,11 @@ if [ -z "$SKIP_NTLM_TESTS" -o -z "$SKIP_ONLINE_TESTS" ]; then fi if [ -z "$SKIP_SSH_TESTS" ]; then + echo "" echo "Starting ssh daemon..." HOME=`mktemp -d ${TMPDIR}/home.XXXXXXXX` SSHD_DIR=`mktemp -d ${TMPDIR}/sshd.XXXXXXXX` - git init --bare "${SSHD_DIR}/test.git" + git init --bare "${SSHD_DIR}/test.git" >/dev/null cat >"${SSHD_DIR}/sshd_config" <<-EOF Port 2222 ListenAddress 0.0.0.0 |