tests/test-inotify-issue1208
author Patrick Mezard <pmezard@gmail.com>
Sun, 25 Apr 2010 22:32:27 +0200
branchstable
changeset 10985 7fab6ae3f688
parent 6997 9c4e488f105e
permissions -rwxr-xr-x
convert/git: rename gitcmd() into gitopen() for readability

#!/bin/sh

"$TESTDIR/hghave" inotify || exit 80

echo "[extensions]" >> $HGRCPATH
echo "inotify=" >> $HGRCPATH

p="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
hg init $p
cd $p

echo % fail
ln -sf doesnotexist .hg/inotify.sock
hg st
hg inserve
rm .hg/inotify.sock

echo % inserve
hg inserve -d --pid-file=hg.pid
cat hg.pid >> "$DAEMON_PIDS"
echo % status
hg status

kill `cat hg.pid`