[Request] [++ ] D10701: status: Add tests for some more edge cases
SimonSapin
phabricator at mercurial-scm.org
Fri May 7 16:45:15 UTC 2021
SimonSapin created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
- Size-preserving file contents modification
- Filtering output to a deleted or removed file
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10701
AFFECTED FILES
tests/test-status.t
CHANGE DETAILS
diff --git a/tests/test-status.t b/tests/test-status.t
--- a/tests/test-status.t
+++ b/tests/test-status.t
@@ -689,6 +689,29 @@
$ ln -s ../repo0/.hg
$ hg status
+If the size hasnât changed but mtime has, status needs to read the contents
+of the file to check whether it has changed
+
+ $ echo 1 > a
+ $ echo 1 > b
+ $ touch -d 2001-02-03 a b
+ $ hg commit -Aqm '#0'
+ $ echo 2 > a
+ $ touch -d 2001-02-04 a b
+ $ hg status
+ M a
+
+Asking specifically for the status of a deleted/removed file
+
+ $ rm a
+ $ rm b
+ $ hg status a
+ ! a
+ $ hg rm a
+ $ hg rm b
+ $ hg status a
+ R a
+
Check using include flag with pattern when status does not need to traverse
the working directory (issue6483)
To: SimonSapin, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210507/022fdc2a/attachment.html>
More information about the Mercurial-patches
mailing list