Skip to content

Commit b9a1907

Browse files
committed
t7004: give the test a bit more stack space
It was reported that the allocated stack space was too small for some archs openSUSE buildfarm runs the tests on. Double it while also doubling the amount of data to be handled. Reported-by: Andreas Schwab <[email protected]> Suggested-by: Jeff King <[email protected]> Tested-by: Andreas Schwab <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent cbc60b6 commit b9a1907

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
@@ -1424,7 +1424,7 @@ EOF
14241424
'
14251425
14261426
run_with_limited_stack () {
1427-
(ulimit -s 64 && "$@")
1427+
(ulimit -s 128 && "$@")
14281428
}
14291429
14301430
test_lazy_prereq ULIMIT 'run_with_limited_stack true'
@@ -1433,7 +1433,7 @@ test_lazy_prereq ULIMIT 'run_with_limited_stack true'
14331433
test_expect_success ULIMIT '--contains works in a deep repo' '
14341434
>expect &&
14351435
i=1 &&
1436-
while test $i -lt 4000
1436+
while test $i -lt 8000
14371437
do
14381438
echo "commit refs/heads/master
14391439
committer A U Thor <[email protected]> $((1000000000 + $i * 100)) +0200

0 commit comments

Comments
 (0)