Skip to content

Commit 1961e70

Browse files
PhilipOakleydscho
authored andcommitted
hash-object: add a >4GB/LLP64 test case using filtered input
To verify that the `clean` side of the `clean`/`smudge` filter code is correct with regards to LLP64 (read: to ensure that `size_t` is used instead of `unsigned long`), here is a test case using a trivial filter, specifically _not_ writing anything to the object store to limit the scope of the test case. As in previous commits, the `big` file from previous test cases is reused if available, to save setup time, otherwise re-generated. Signed-off-by: Philip Oakley <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent ce0d0a9 commit 1961e70

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

t/t1007-hash-object.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,4 +292,16 @@ test_expect_success EXPENSIVE,SIZE_T_IS_64BIT,!LONG_IS_64BIT \
292292
test_cmp expect actual
293293
'
294294

295+
# This clean filter does nothing, other than excercising the interface.
296+
# We ensure that cleaning doesn't mangle large files on 64-bit Windows.
297+
test_expect_success EXPENSIVE,SIZE_T_IS_64BIT,!LONG_IS_64BIT \
298+
'hash filtered files over 4GB correctly' '
299+
{ test -f big || test-tool genzeros $((5*1024*1024*1024)) >big; } &&
300+
test_oid large5GB >expect &&
301+
test_config filter.null-filter.clean "cat" &&
302+
echo "big filter=null-filter" >.gitattributes &&
303+
git hash-object -- big >actual &&
304+
test_cmp expect actual
305+
'
306+
295307
test_done

0 commit comments

Comments
 (0)