inotify: do not rely on stat(.hg/dirstate) to invalidate our dirstate
stat() is not reliable when several events happen quickly. Which means
that if two hg actions occur in the same second, stat() result will not
reflect the second change. And only _one_ invalidate() call was done.
Also ignore the events that occur when wlock is held, since wlock release
will trigger a full rescan anyway.
Fixes 17 run-tests.py --inotify tests.
#!/bin/sh
cat > engine.py << EOF
from mercurial import templater
class mytemplater(object):
def __init__(self, loader, filters, defaults):
self.loader = loader
def process(self, t, map):
tmpl = self.loader(t)
for k, v in map.iteritems():
if k in ('templ', 'ctx', 'repo', 'revcache', 'cache'):
continue
if hasattr(v, '__call__'):
v = v(**map)
v = templater.stringify(v)
tmpl = tmpl.replace('{{%s}}' % k, v)
yield tmpl
templater.engines['my'] = mytemplater
EOF
hg init test
echo '[extensions]' > test/.hg/hgrc
echo "engine = `pwd`/engine.py" >> test/.hg/hgrc
cd test
cat > mymap << EOF
changeset = my:changeset.txt
EOF
cat > changeset.txt << EOF
{{rev}} {{node}} {{author}}
EOF
hg ci -Ama
hg log --style=./mymap