tests/test-inotify-lookup
changeset 12457 5ae8711ea324
parent 12456 1f74b0d0f485
child 12458 9446bd059da3
equal deleted inserted replaced
12456:1f74b0d0f485 12457:5ae8711ea324
     1 #!/bin/sh
       
     2 
       
     3 "$TESTDIR/hghave" inotify || exit 80
       
     4 
       
     5 hg init
       
     6 echo "[extensions]" > .hg/hgrc
       
     7 echo "inotify=" >> .hg/hgrc
       
     8 hg inserve -d --pid-file .hg/inotify.pid
       
     9 
       
    10 echo a > a
       
    11 hg ci -Aqm0
       
    12 hg co -q null
       
    13 hg co -q
       
    14 hg st
       
    15 cat a
       
    16 
       
    17 kill `cat .hg/inotify.pid`
       
    18