summaryrefslogtreecommitdiff
path: root/tests/test-inotify-issue1542.t
diff options
context:
space:
mode:
authorLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 14:49:51 +0100
committerLorry <lorry@roadtrain.codethink.co.uk>2012-08-22 14:49:51 +0100
commita498da43c7fdb9f24b73680c02a4a3588cc62d9a (patch)
treedaf8119dae1749b5165b68033a1b23a7375ce9ce /tests/test-inotify-issue1542.t
downloadmercurial-tarball-a498da43c7fdb9f24b73680c02a4a3588cc62d9a.tar.gz
Tarball conversion
Diffstat (limited to 'tests/test-inotify-issue1542.t')
-rw-r--r--tests/test-inotify-issue1542.t36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/test-inotify-issue1542.t b/tests/test-inotify-issue1542.t
new file mode 100644
index 0000000..fa3d5cd
--- /dev/null
+++ b/tests/test-inotify-issue1542.t
@@ -0,0 +1,36 @@
+
+ $ "$TESTDIR/hghave" inotify || exit 80
+ $ hg init
+ $ touch a
+ $ mkdir dir
+ $ touch dir/b
+ $ touch dir/c
+ $ echo "[extensions]" >> $HGRCPATH
+ $ echo "inotify=" >> $HGRCPATH
+ $ hg add dir/c
+
+inserve
+
+ $ hg inserve -d --pid-file=hg.pid 2>&1
+ $ cat hg.pid >> "$DAEMON_PIDS"
+ $ hg st
+ A dir/c
+ ? a
+ ? dir/b
+ ? hg.pid
+
+moving dir out
+
+ $ mv dir ../tmp-test-inotify-issue1542
+
+status
+
+ $ hg st
+ ! dir/c
+ ? a
+ ? hg.pid
+ $ sleep 1
+
+Are we able to kill the service? if not, the service died on some error
+
+ $ kill `cat hg.pid`