Closed by commit rHG2527c10a2569: shelve: add test clearly demonstrating that 
the conflict labels are backwards (authored by spectral).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D8139?vs=20263&id=20274

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D8139/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D8139

AFFECTED FILES
  tests/test-shelve2.t

CHANGE DETAILS

diff --git a/tests/test-shelve2.t b/tests/test-shelve2.t
--- a/tests/test-shelve2.t
+++ b/tests/test-shelve2.t
@@ -921,3 +921,25 @@
   @  initial commit  test  1970-01-01 00:00 +0000
   
   $ cd ..
+
+Demonstrate that the labels are correct in the merge conflict
+-------------------------------------------------------------
+  $ hg init labels
+  $ cd labels
+  $ echo r0 > foo
+  $ hg ci -qAm r0
+  $ echo "this will be shelved" >> foo
+  $ hg shelve -q
+  $ echo "this is in wdir, conflicts with shelve" >> foo
+  $ hg unshelve -q
+  warning: conflicts while merging foo! (edit, then use 'hg resolve --mark')
+  unresolved conflicts (see 'hg resolve', then 'hg unshelve --continue')
+  [1]
+  $ cat foo
+  r0
+  <<<<<<< shelve:       0b2fcf2a90e9 - shelve: pending changes temporary commit
+  this is in wdir, conflicts with shelve
+  =======
+  this will be shelved
+  >>>>>>> working-copy: 9c072a2163db - shelve: changes to: r0
+  $ cd ..



To: spectral, #hg-reviewers, marmoute, pulkit
Cc: marmoute, mercurial-devel
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to