Skip to content

Commit 3829327

Browse files
committed
Temporarily revert "t3701: verify that we can add *lots* of files interactively"
This conflicts with the `add-p` series and will be reapplied on top of the merge later. This reverts commit c8c1c27. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent c15ba2d commit 3829327

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

t/t3701-add-interactive.sh

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -639,25 +639,4 @@ test_expect_success 'add -p patch editing works with pathological context lines'
639639
test_cmp expected-2 actual
640640
'
641641

642-
test_expect_success EXPENSIVE 'add -i with a lot of files' '
643-
git reset --hard &&
644-
x160=0123456789012345678901234567890123456789 &&
645-
x160=$x160$x160$x160$x160 &&
646-
y= &&
647-
i=0 &&
648-
while test $i -le 200
649-
do
650-
name=$(printf "%s%03d" $x160 $i) &&
651-
echo $name >$name &&
652-
git add -N $name &&
653-
y="${y}y$LF" &&
654-
i=$(($i+1)) ||
655-
break
656-
done &&
657-
echo "$y" | git add -p -- . &&
658-
git diff --cached >staged &&
659-
test_line_count = 1407 staged &&
660-
git reset --hard
661-
'
662-
663642
test_done

0 commit comments

Comments
 (0)