D203: tests: demonstrate that failed "hg ci -A" updates dirstate (issue5645)
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Mon Jul 31 23:58:48 UTC 2017
martinvonz created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D203
AFFECTED FILES
tests/test-commit.t
CHANGE DETAILS
diff --git a/tests/test-commit.t b/tests/test-commit.t
--- a/tests/test-commit.t
+++ b/tests/test-commit.t
@@ -147,6 +147,18 @@
oldhash=bar
sourcehash=foo
+Failed commit with --addremove should not update dirstate
+
+ $ echo foo > newfile
+ $ hg status
+ ? newfile
+ $ HGEDITOR=false hg ci --addremove
+ adding newfile
+ abort: edit failed: false exited with status 1
+ [255]
+ $ hg status
+ A newfile
+
Make sure we do not obscure unknown requires file entries (issue2649)
$ echo foo >> foo
To: martinvonz, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list