##// END OF EJS Templates
convert/bzr: make it work with filemaps (issue1631)...
convert/bzr: make it work with filemaps (issue1631) The bzr converter maintains a child -> parents mapping and drop entries whenever a child is read. It does not work with filemaps, getchangedfiles() may be called more than once when filtered files belong to merge revisions. getchanges() still works that way but it is not clear whether a similar issue can arise when interacting with merges.

File last commit:

r6997:9c4e488f default
r8165:78658990 default
Show More
test-inotify-issue1208
24 lines | 427 B | text/plain | TextLexer
/ tests / test-inotify-issue1208
Benoit Boissinot
inotify: deactivate inotify status on failure...
r6996 #!/bin/sh
"$TESTDIR/hghave" inotify || exit 80
echo "[extensions]" >> $HGRCPATH
echo "inotify=" >> $HGRCPATH
p="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
hg init $p
cd $p
Benoit Boissinot
inotify: workaround ENAMETOOLONG by using symlinks...
r6997 echo % fail
ln -sf doesnotexist .hg/inotify.sock
hg st
hg inserve
rm .hg/inotify.sock
Benoit Boissinot
inotify: deactivate inotify status on failure...
r6996 echo % inserve
Benoit Boissinot
inotify: workaround ENAMETOOLONG by using symlinks...
r6997 hg inserve -d --pid-file=hg.pid
cat hg.pid >> "$DAEMON_PIDS"
Benoit Boissinot
inotify: deactivate inotify status on failure...
r6996 echo % status
hg status
Benoit Boissinot
inotify: workaround ENAMETOOLONG by using symlinks...
r6997
kill `cat hg.pid`