Skip to content
Snippets Groups Projects
Commit 76afe74b authored by Junio C Hamano's avatar Junio C Hamano
Browse files

Merge branch 'js/t1050'

* js/t1050:
  t1050-large: generate large files without dd
parents 67b5440d d0a042a1
No related branches found
No related tags found
No related merge requests found
...@@ -9,10 +9,10 @@ test_expect_success setup ' ...@@ -9,10 +9,10 @@ test_expect_success setup '
# clone does not allow us to pass core.bigfilethreshold to # clone does not allow us to pass core.bigfilethreshold to
# new repos, so set core.bigfilethreshold globally # new repos, so set core.bigfilethreshold globally
git config --global core.bigfilethreshold 200k && git config --global core.bigfilethreshold 200k &&
echo X | dd of=large1 bs=1k seek=2000 && printf "%2000000s" X >large1 &&
echo X | dd of=large2 bs=1k seek=2000 && cp large1 large2 &&
echo X | dd of=large3 bs=1k seek=2000 && cp large1 large3 &&
echo Y | dd of=huge bs=1k seek=2500 && printf "%2500000s" Y >huge &&
GIT_ALLOC_LIMIT=1500k && GIT_ALLOC_LIMIT=1500k &&
export GIT_ALLOC_LIMIT export GIT_ALLOC_LIMIT
' '
...@@ -61,7 +61,7 @@ test_expect_success 'checkout a large file' ' ...@@ -61,7 +61,7 @@ test_expect_success 'checkout a large file' '
large1=$(git rev-parse :large1) && large1=$(git rev-parse :large1) &&
git update-index --add --cacheinfo 100644 $large1 another && git update-index --add --cacheinfo 100644 $large1 another &&
git checkout another && git checkout another &&
cmp large1 another ;# this must not be test_cmp test_cmp large1 another
' '
test_expect_success 'packsize limit' ' test_expect_success 'packsize limit' '
...@@ -162,7 +162,7 @@ test_expect_success 'pack-objects with large loose object' ' ...@@ -162,7 +162,7 @@ test_expect_success 'pack-objects with large loose object' '
test_create_repo packed && test_create_repo packed &&
mv pack-* packed/.git/objects/pack && mv pack-* packed/.git/objects/pack &&
GIT_DIR=packed/.git git cat-file blob $SHA1 >actual && GIT_DIR=packed/.git git cat-file blob $SHA1 >actual &&
cmp huge actual test_cmp huge actual
' '
test_expect_success 'tar achiving' ' test_expect_success 'tar achiving' '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment