Let core.excludesfile default to $XDG_CONFIG_HOME/git/ignore
[gitweb.git] / t / t1050-large.sh
index dd1bb8422c42ae527c845a8e06a24b830d315e50..55ed955ceffee9184b5822054697f58e7d0ef6a4 100755 (executable)
@@ -130,8 +130,20 @@ test_expect_success 'git-show a large file' '
 
 '
 
-test_expect_failure 'repack' '
+test_expect_success 'repack' '
        git repack -ad
 '
 
+test_expect_success 'tar achiving' '
+       git archive --format=tar HEAD >/dev/null
+'
+
+test_expect_success 'zip achiving, store only' '
+       git archive --format=zip -0 HEAD >/dev/null
+'
+
+test_expect_success 'zip achiving, deflate' '
+       git archive --format=zip HEAD >/dev/null
+'
+
 test_done