File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 2222 shell : pwsh
2323 run : meson compile -C build
2424 - name : Test
25- shell : pwsh
25+ shell : bash
2626 timeout-minutes : 5
2727 run : meson test -C build t5410-receive-pack -i --test-args=-x
Original file line number Diff line number Diff line change @@ -49,13 +49,9 @@ test_expect_success 'receive-pack missing objects fails connectivity check' '
4949 git clone --bare repo setup.git &&
5050 git -C repo commit --allow-empty -m 2 &&
5151
52- write_script receive-pack-wrapper <<-EOF &&
53- tee "$(pwd)/out" | git-receive-pack
54- EOF
55-
5652 # Capture git-send-pack(1) output sent to git-receive-pack(1).
5753 git -C repo send-pack ../setup.git --all \
58- --receive-pack="${SQ}$(pwd)${SQ}/ receive-pack-wrapper " &&
54+ --receive-pack="tee ../out | git- receive-pack" &&
5955
6056 # Replay captured git-send-pack(1) output on new empty repository.
6157 git init --bare remote.git &&
@@ -74,13 +70,9 @@ test_expect_success 'receive-pack missing objects bypasses connectivity check' '
7470 git clone --bare repo setup.git &&
7571 git -C repo commit --allow-empty -m 2 &&
7672
77- write_script receive-pack-wrapper <<-EOF &&
78- tee "$(pwd)/out" | git-receive-pack
79- EOF
80-
8173 # Capture git-send-pack(1) output sent to git-receive-pack(1).
8274 git -C repo send-pack ../setup.git --all \
83- --receive-pack="${SQ}$(pwd)${SQ}/ receive-pack-wrapper " &&
75+ --receive-pack="tee ../out | git- receive-pack" &&
8476
8577 # Replay captured git-send-pack(1) output on new empty repository.
8678 git init --bare remote.git &&
You can’t perform that action at this time.
0 commit comments