pretty: --format output should honor logOutputEncoding
[gitweb.git] / t / t5801-remote-helpers.sh
index 9b287db650ae8042d7da3be2331a95e94421032d..dbb02e2afd16b2ca53f18107f5f07af37f217c9b 100755 (executable)
@@ -173,7 +173,31 @@ test_expect_success GPG 'push signed tag' '
        git tag -s -m signed-tag signed-tag &&
        git push origin signed-tag
        ) &&
-       compare_refs local signed-tag^{} server signed-tag^{}
+       compare_refs local signed-tag^{} server signed-tag^{} &&
+       test_must_fail compare_refs local signed-tag server signed-tag
+'
+
+test_expect_success GPG 'push signed tag with signed-tags capability' '
+       (cd local &&
+       git checkout master &&
+       git tag -s -m signed-tag signed-tag-2 &&
+       GIT_REMOTE_TESTGIT_SIGNED_TAGS=1 git push origin signed-tag-2
+       ) &&
+       compare_refs local signed-tag-2 server signed-tag-2
+'
+
+test_expect_success 'push messages' '
+       (cd local &&
+       git checkout -b new_branch master &&
+       echo new >>file &&
+       git commit -a -m new &&
+       git push origin new_branch &&
+       git fetch origin &&
+       echo new >>file &&
+       git commit -a -m new &&
+       git push origin new_branch 2> msg &&
+       ! grep "\[new branch\]" msg
+       )
 '
 
 test_done