]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5004-archive-corner-cases.sh
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / t / t5004-archive-corner-cases.sh
index 2d32d0ed122277089966b44f015b5f8ff6765e1c..ae508e21623fb4af7b55c1c8afe27556b24bb232 100755 (executable)
@@ -131,7 +131,7 @@ test_expect_success ZIPINFO 'zip archive with many entries' '
        do
                for b in 0 1 2 3 4 5 6 7 8 9 a b c d e f
                do
-                       : >00/$a$b
+                       : >00/$a$b || return 1
                done
        done &&
        git add 00 &&
@@ -143,7 +143,7 @@ test_expect_success ZIPINFO 'zip archive with many entries' '
        do
                for d in 0 1 2 3 4 5 6 7 8 9 a b c d e f
                do
-                       echo "040000 tree $subtree      $c$d"
+                       echo "040000 tree $subtree      $c$d" || return 1
                done
        done >tree &&
        tree=$(git mktree <tree) &&
@@ -171,7 +171,7 @@ test_expect_success EXPENSIVE,UNZIP,UNZIP_ZIP64_SUPPORT \
        # create tree containing 65500 entries of that blob
        for i in $(test_seq 1 65500)
        do
-               echo "100644 blob $blob $i"
+               echo "100644 blob $blob $i" || return 1
        done >tree &&
        tree=$(git mktree <tree) &&