File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ test_expect_success setup '
9
9
# clone does not allow us to pass core.bigfilethreshold to
10
10
# new repos, so set core.bigfilethreshold globally
11
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 &&
12
+ printf "%2000000s" X > large1 &&
13
+ cp large1 large2 &&
14
+ cp large1 large3 &&
15
+ printf "%2500000s" Y > huge &&
16
16
GIT_ALLOC_LIMIT=1500k &&
17
17
export GIT_ALLOC_LIMIT
18
18
'
@@ -61,7 +61,7 @@ test_expect_success 'checkout a large file' '
61
61
large1=$(git rev-parse :large1) &&
62
62
git update-index --add --cacheinfo 100644 $large1 another &&
63
63
git checkout another &&
64
- cmp large1 another ;# this must not be test_cmp
64
+ test_cmp large1 another
65
65
'
66
66
67
67
test_expect_success ' packsize limit' '
@@ -162,7 +162,7 @@ test_expect_success 'pack-objects with large loose object' '
162
162
test_create_repo packed &&
163
163
mv pack-* packed/.git/objects/pack &&
164
164
GIT_DIR=packed/.git git cat-file blob $SHA1 >actual &&
165
- cmp huge actual
165
+ test_cmp huge actual
166
166
'
167
167
168
168
test_expect_success ' tar achiving' '
You can’t perform that action at this time.
0 commit comments