comparison tests/test-inotify @ 9854:95e1867f765b

inotify: mark directories visited during lookup (issue1844) Emulate the match.dir calls that are made in dirstate.walk: * first mark the visited directories on the server side * then extend the transmitted response to include this directory list * and lastly call match.dir on each directory
author Nicolas Dumazet <nicdumz.commits@gmail.com>
date Fri, 13 Nov 2009 08:31:10 +0900
parents a87bc6e2a907
children 2c2f7593ffc4
comparison
equal deleted inserted replaced
9853:a033929bd34e 9854:95e1867f765b
68 hg up 0 68 hg up 0
69 hg st 69 hg st
70 70
71 HGMERGE=internal:local hg up 71 HGMERGE=internal:local hg up
72 hg st 72 hg st
73
74 # Test for 1844: "hg ci folder" will not commit all changes beneath "folder"
75 mkdir 1844
76 echo a > 1844/foo
77 hg add 1844
78 hg ci -m 'working'
79
80 echo b >> 1844/foo
81 hg ci 1844 -m 'broken'
82
73 kill `cat hg.pid` 83 kill `cat hg.pid`