Re: [PATCH v2 27/48] remote-hg: add test for new bookmark special

2013-05-24 Thread Eric Sunshine
On Fri, May 24, 2013 at 10:29 PM, Felipe Contreras
 wrote:
> From the point of view of Mercurial, this creates a new branch head, and
> requires a forced push.
>
> Ideally, whoever, we would want it to work just like in git; new

s/whoever/however/

> branches can be pushed without problems.
>
> Signed-off-by: Felipe Contreras 
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 27/48] remote-hg: add test for new bookmark special

2013-05-24 Thread Felipe Contreras
>From the point of view of Mercurial, this creates a new branch head, and
requires a forced push.

Ideally, whoever, we would want it to work just like in git; new
branches can be pushed without problems.

Signed-off-by: Felipe Contreras 
---
 contrib/remote-helpers/test-hg.sh | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/contrib/remote-helpers/test-hg.sh 
b/contrib/remote-helpers/test-hg.sh
index e059bbc..64f0849 100755
--- a/contrib/remote-helpers/test-hg.sh
+++ b/contrib/remote-helpers/test-hg.sh
@@ -370,4 +370,19 @@ test_expect_failure 'remote update bookmark diverge' '
check_bookmark hgrepo diverge "bump bookmark"
 '
 
+test_expect_failure 'remote new bookmark multiple branch head' '
+   test_when_finished "rm -rf gitrepo*" &&
+
+   (
+   git clone "hg::hgrepo" gitrepo &&
+   cd gitrepo &&
+   git checkout --quiet -b feature-c HEAD^ &&
+   echo feature-c > content &&
+   git commit -a -m feature-c &&
+   git push --quiet origin feature-c
+   ) &&
+
+   check_bookmark hgrepo feature-c feature-c
+'
+
 test_done
-- 
1.8.3.rc3.312.g47657de

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html