Let core.excludesfile default to $XDG_CONFIG_HOME/git/ignore
[gitweb.git] / t / t1050-large.sh
index ded66b3228920220c710788337874f46401e83a1..55ed955ceffee9184b5822054697f58e7d0ef6a4 100755 (executable)
@@ -116,22 +116,34 @@ test_expect_success 'hash-object' '
        git hash-object large1
 '
 
-test_expect_failure 'cat-file a large file' '
+test_expect_success 'cat-file a large file' '
        git cat-file blob :large1 >/dev/null
 '
 
-test_expect_failure 'cat-file a large file from a tag' '
+test_expect_success 'cat-file a large file from a tag' '
        git tag -m largefile largefiletag :large1 &&
        git cat-file blob largefiletag >/dev/null
 '
 
-test_expect_failure 'git-show a large file' '
+test_expect_success 'git-show a large file' '
        git show :large1 >/dev/null
 
 '
 
-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