hashmap: add simplified hashmap_get_from_hash() API
[gitweb.git] / t / t0021-conversion.sh
index e50f0f742fdc4dca766e3f236cd32e388f0c89aa..f890c54d137aab021e6d6a61c5741af872555c1f 100755 (executable)
@@ -190,4 +190,16 @@ test_expect_success 'required filter clean failure' '
        test_must_fail git add test.fc
 '
 
+test_expect_success EXPENSIVE 'filter large file' '
+       git config filter.largefile.smudge cat &&
+       git config filter.largefile.clean cat &&
+       for i in $(test_seq 1 2048); do printf "%1048576d" 1; done >2GB &&
+       echo "2GB filter=largefile" >.gitattributes &&
+       git add 2GB 2>err &&
+       ! test -s err &&
+       rm -f 2GB &&
+       git checkout -- 2GB 2>err &&
+       ! test -s err
+'
+
 test_done