Merge branch 'jh/push-default-upstream-configname' into maint
[gitweb.git] / t / t7608-merge-messages.sh
index 9d10583916d42092eaee29fbcafc73b1c827773b..9225fa6f025cd9586b46f30464a69ccb57ca6b2a 100755 (executable)
@@ -38,7 +38,7 @@ test_expect_success 'merge tag' '
        check_oneline "Merge commit Qtag-1Q"
 '
 
-test_expect_failure 'ambiguous tag' '
+test_expect_success 'ambiguous tag' '
        git checkout -b ambiguous master &&
        test_commit ambiguous &&
        git checkout master &&
@@ -47,4 +47,14 @@ test_expect_failure 'ambiguous tag' '
        check_oneline "Merge commit QambiguousQ"
 '
 
+test_expect_success 'remote-tracking branch' '
+       git checkout -b remote master &&
+       test_commit remote-1 &&
+       git update-ref refs/remotes/origin/master remote &&
+       git checkout master &&
+       test_commit master-5 &&
+       git merge origin/master &&
+       check_oneline "Merge remote-tracking branch Qorigin/masterQ"
+'
+
 test_done