We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b15879c commit 2d38020Copy full SHA for 2d38020
t/t1050-large.sh
@@ -9,10 +9,10 @@ test_expect_success setup '
9
# clone does not allow us to pass core.bigfilethreshold to
10
# new repos, so set core.bigfilethreshold globally
11
git config --global core.bigfilethreshold 200k &&
12
- echo X | dd of=large1 bs=1k seek=2000 &&
13
- echo X | dd of=large2 bs=1k seek=2000 &&
14
- echo X | dd of=large3 bs=1k seek=2000 &&
15
- echo Y | dd of=huge bs=1k seek=2500 &&
+ perl -e "print \"\\0\" x 2048000; print \"X\\n\";" > large1 &&
+ perl -e "print \"\\0\" x 2048000; print \"X\\n\";" > large2 &&
+ perl -e "print \"\\0\" x 2048000; print \"X\\n\";" > large3 &&
+ perl -e "print \"\\0\" x 2560000; print \"Y\\n\";" > huge &&
16
GIT_ALLOC_LIMIT=1500 &&
17
export GIT_ALLOC_LIMIT
18
'
0 commit comments