[Updated] D12624: amend: add test showing poor behavior when copies are involved
spectral (Kyle Lippincott)
phabricator at mercurial-scm.org
Thu May 12 05:08:14 UTC 2022
Closed by commit rHGdc342071297f: amend: add test showing poor behavior when copies are involved (authored by spectral).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D12624?vs=33400&id=33402
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D12624/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D12624
AFFECTED FILES
tests/test-amend.t
CHANGE DETAILS
diff --git a/tests/test-amend.t b/tests/test-amend.t
--- a/tests/test-amend.t
+++ b/tests/test-amend.t
@@ -609,3 +609,20 @@
> hg status
> fi
OK.
+
+Amending a commit that has copies but not specifying those copies shouldn't
+cause them to be lost
+
+ $ cd $TESTTMP
+ $ hg init dont-lose-copies; cd dont-lose-copies
+ $ echo r0 > r0; hg commit -qAm "r0"
+ $ hg cp r0 r0_copied; hg commit -qm "copy r0"
+ $ echo hi > new_file_amend_me
+ $ hg status --change . --copies
+ A r0_copied
+ r0
+ $ hg amend -qA new_file_amend_me
+ $ hg status --change . --copies
+ A new_file_amend_me
+ A r0_copied
+ r0 (missing-correct-output !)
To: spectral, #hg-reviewers
Cc: martinvonz, mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20220512/82606302/attachment-0002.html>
More information about the Mercurial-patches
mailing list