##// END OF EJS Templates
phases: prevent rebase to rebase immutable changeset.
phases: prevent rebase to rebase immutable changeset.

File last commit:

r12650:fed4bb2c default
r15742:65df60a3 default
Show More
test-inotify-issue1208.t
36 lines | 923 B | text/troff | Tads3Lexer
/ tests / test-inotify-issue1208.t
Matt Mackall
tests: unify test-inotify-issue1208
r12453
$ "$TESTDIR/hghave" inotify || exit 80
$ echo "[extensions]" >> $HGRCPATH
$ echo "inotify=" >> $HGRCPATH
$ p="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
$ hg init $p
$ cd $p
fail
$ ln -sf doesnotexist .hg/inotify.sock
$ hg st
abort: inotify-server: cannot start: .hg/inotify.sock is a broken symlink
inotify-client: could not start inotify server: child process failed to start
$ hg inserve
abort: inotify-server: cannot start: .hg/inotify.sock is a broken symlink
[255]
$ rm .hg/inotify.sock
inserve
$ hg inserve -d --pid-file=hg.pid
$ cat hg.pid >> "$DAEMON_PIDS"
status
$ hg status
? hg.pid
Nicolas Dumazet
inotify: raise correct error if server is already started in a deep repository...
r12650
if we try to start twice the server, make sure we get a correct error
$ hg inserve -d --pid-file=hg2.pid
abort: inotify-server: cannot start: socket is already bound
abort: child process failed to start
[255]
Matt Mackall
tests: unify test-inotify-issue1208
r12453 $ kill `cat hg.pid`