diff tests/test-hgignore.t @ 19128:f4930b533d55 stable

hgignore: fix regression with hgignore directory matches (issue3921) If a directory matched a regex in hgignore but the files inside the directory did not match the regex, they would appear as deleted in hg status. This change fixes them to appear normally in hg status. Removing the ignore(nf) conditional here is ok because it just means we might stat more files than we had before. My testing on a large repo shows this causes no performance regression since the only additional files being stat'd are the ones that are missing (i.e. status=!), which are generally rare.
author Durham Goode <durham@fb.com>
date Fri, 03 May 2013 09:44:50 -0700
parents f2719b387380
children a4b67bf1f0a5
line wrap: on
line diff
--- a/tests/test-hgignore.t	Thu May 02 11:26:43 2013 -0700
+++ b/tests/test-hgignore.t	Fri May 03 09:44:50 2013 -0700
@@ -124,3 +124,13 @@
   (?:(?:|.*/)[^/]*(?:/|$))
 
   $ cd ..
+
+Check patterns that match only the directory
+
+  $ echo "^dir\$" > .hgignore
+  $ hg status
+  A dir/b.o
+  ? .hgignore
+  ? a.c
+  ? a.o
+  ? syntax