Skip to content

Commit 7543dea

Browse files
committed
Merge branch 'sk/tag-contains-wo-recursion'
* sk/tag-contains-wo-recursion: t7004: give the test a bit more stack space
2 parents cc7b2f8 + b9a1907 commit 7543dea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/t7004-tag.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ test_expect_success 'invalid sort parameter in configuratoin' '
14601460
'
14611461
14621462
run_with_limited_stack () {
1463-
(ulimit -s 64 && "$@")
1463+
(ulimit -s 128 && "$@")
14641464
}
14651465
14661466
test_lazy_prereq ULIMIT 'run_with_limited_stack true'
@@ -1469,7 +1469,7 @@ test_lazy_prereq ULIMIT 'run_with_limited_stack true'
14691469
test_expect_success ULIMIT '--contains works in a deep repo' '
14701470
>expect &&
14711471
i=1 &&
1472-
while test $i -lt 4000
1472+
while test $i -lt 8000
14731473
do
14741474
echo "commit refs/heads/master
14751475
committer A U Thor <[email protected]> $((1000000000 + $i * 100)) +0200

0 commit comments

Comments
 (0)