Merge branch 'sb/test-bitmap-free-at-end'
[gitweb.git] / t / t1403-show-ref.sh
index 3e500ed7da6e366ec046a778b82d70238ce23294..7e10bcfe395609cff5edc1f8f6ce95fcf69cf5f6 100755 (executable)
@@ -28,7 +28,7 @@ test_expect_success 'show-ref' '
 
        >expect &&
 
-       test_must_fail git show-ref D >actual
+       test_must_fail git show-ref D >actual &&
        test_cmp expect actual
 '
 
@@ -62,7 +62,7 @@ test_expect_success 'show-ref --verify' '
        test_must_fail git show-ref --verify tags/A >actual &&
        test_cmp expect actual &&
 
-       test_must_fail git show-ref --verify D >actual
+       test_must_fail git show-ref --verify D >actual &&
        test_cmp expect actual
 '
 
@@ -78,7 +78,7 @@ test_expect_success 'show-ref --verify -q' '
        test_must_fail git show-ref --verify -q tags/A >actual &&
        test_cmp expect actual &&
 
-       test_must_fail git show-ref --verify -q D >actual
+       test_must_fail git show-ref --verify -q D >actual &&
        test_cmp expect actual
 '
 
@@ -105,10 +105,10 @@ test_expect_success 'show-ref -d' '
        test_cmp expect actual &&
 
        git show-ref -d refs/heads/master >actual &&
-       test_cmp expect actual
+       test_cmp expect actual &&
 
        git show-ref -d --verify refs/heads/master >actual &&
-       test_cmp expect actual
+       test_cmp expect actual &&
 
        >expect &&