fast-import: implement unpack limit
[gitweb.git] / t / t9300-fast-import.sh
index 25bb60b2814320b628d3d12af88ee1d394a94217..e6a2b8a4d7939eb268eea799687c2b3b4b94e8ef 100755 (executable)
@@ -52,6 +52,7 @@ echo "$@"'
 ###
 
 test_expect_success 'empty stream succeeds' '
+       git config fastimport.unpackLimit 0 &&
        git fast-import </dev/null
 '
 
@@ -2675,6 +2676,7 @@ test_expect_success 'R: blob bigger than threshold' '
        echo >>input &&
 
        test_create_repo R &&
+       git --git-dir=R/.git config fastimport.unpackLimit 0 &&
        git --git-dir=R/.git fast-import --big-file-threshold=1 <input
 '