Skip to content

Commit 289f7ca

Browse files
committed
fixup! TO-DROP: t5309: create failing test for 'git index-pack'
This is no longer needed. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 888ecde commit 289f7ca

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

t/t5309-pack-delta-cycles.sh

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -105,30 +105,4 @@ test_expect_success 'index-pack works with thin pack A->B->C with B on disk' '
105105
)
106106
'
107107

108-
test_expect_failure 'index-pack works with thin pack A->B->C with B on disk' '
109-
git init server &&
110-
(
111-
cd server &&
112-
test_commit_bulk 4
113-
) &&
114-
115-
A=$(git -C server rev-parse HEAD^{tree}) &&
116-
B=$(git -C server rev-parse HEAD~1^{tree}) &&
117-
C=$(git -C server rev-parse HEAD~2^{tree}) &&
118-
git -C server reset --hard HEAD~1 &&
119-
120-
cat >in <<-EOF &&
121-
REF_DELTA $A $B
122-
REF_DELTA $B $C
123-
EOF
124-
125-
test-tool -C server pack-deltas 2 <in >thin.pack &&
126-
127-
git clone "file://$(pwd)/server" client &&
128-
(
129-
cd client &&
130-
git index-pack --fix-thin --stdin <../thin.pack
131-
)
132-
'
133-
134108
test_done

0 commit comments

Comments
 (0)