tests/test-inotify
changeset 7350 c5dbe86b0fee
parent 7145 6f4a253f2a64
child 7351 5ab0abf27dd9
--- a/tests/test-inotify	Sun Nov 09 12:15:32 2008 +0100
+++ b/tests/test-inotify	Tue Nov 11 23:16:59 2008 +0100
@@ -13,6 +13,9 @@
 
 echo "[extensions]" >> $HGRCPATH
 echo "inotify=" >> $HGRCPATH
+echo "[inotify]" >> $HGRCPATH
+echo "debug=1" >> $HGRCPATH
+echo "log=/tmp/inot.log" >> $HGRCPATH
 
 echo % inserve
 hg inserve -d --pid-file=hg.pid
@@ -27,4 +30,28 @@
 echo % all
 hg status -A
 
+#issue 1375
+#Testing that we can remove a folder and then add a file with the same name
+
+mkdir h f g
+echo h > h/h
+echo f > f/f
+echo g > g/g
+
+hg ci -Am t
+sleep 1
+hg rm h
+hg rm f
+sleep 1
+echo h >h
+ln -s g f
+
+hg add h
+sleep 1
+hg add f
+
+hg status
+hg ci -m0
+hg status
 kill `cat hg.pid`
+