We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45b65a6 + 4ca9453 commit d7d3b56Copy full SHA for d7d3b56
1 file changed
t/t7810-grep.sh
@@ -399,17 +399,6 @@ test_expect_success 'grep -q, silently report matches' '
399
test_cmp empty actual
400
'
401
402
-# Create 1024 file names that sort between "y" and "z" to make sure
403
-# the two files are handled by different calls to an external grep.
404
-# This depends on MAXARGS in builtin-grep.c being 1024 or less.
405
-c32="0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v"
406
-test_expect_success 'grep -C1, hunk mark between files' '
407
- for a in $c32; do for b in $c32; do : >y-$a$b; done; done &&
408
- git add y-?? &&
409
- git grep -C1 "^[yz]" >actual &&
410
- test_cmp expected actual
411
-'
412
-
413
test_expect_success 'grep -C1 hunk mark between files' '
414
git grep -C1 "^[yz]" >actual &&
415
test_cmp expected actual
0 commit comments