# HG changeset patch # User Matt Mackall # Date 1285526601 18000 # Node ID 17ebf11bff81f3b9f64361b5739a49519b56d0a7 # Parent 0fcdae13493b5f78593fd551ccccb5e190eb6f1d tests: unify test-inotify-debuginotify diff -r 0fcdae13493b -r 17ebf11bff81 tests/test-inotify-debuginotify --- a/tests/test-inotify-debuginotify Sun Sep 26 13:43:21 2010 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -#!/bin/sh - -"$TESTDIR/hghave" inotify || exit 80 - -hg init - -echo "[extensions]" >> $HGRCPATH -echo "inotify=" >> $HGRCPATH - -echo % inserve -hg inserve -d --pid-file=hg.pid -cat hg.pid >> "$DAEMON_PIDS" - -# let the daemon finish its stuff -sleep 1 - -echo % empty -hg debuginotify - -mkdir a -sleep 1 - -echo % only 'a' -hg debuginotify - -rmdir a -sleep 1 - -echo % empty again -hg debuginotify - -kill `cat hg.pid` diff -r 0fcdae13493b -r 17ebf11bff81 tests/test-inotify-debuginotify.out --- a/tests/test-inotify-debuginotify.out Sun Sep 26 13:43:21 2010 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -% inserve -% empty -directories being watched: - / - .hg/ -% only a -directories being watched: - / - .hg/ - a/ -% empty again -directories being watched: - / - .hg/ diff -r 0fcdae13493b -r 17ebf11bff81 tests/test-inotify-debuginotify.t --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-inotify-debuginotify.t Sun Sep 26 13:43:21 2010 -0500 @@ -0,0 +1,41 @@ + + $ "$TESTDIR/hghave" inotify || exit 80 + $ hg init + $ echo "[extensions]" >> $HGRCPATH + $ echo "inotify=" >> $HGRCPATH + +inserve + + $ hg inserve -d --pid-file=hg.pid + $ cat hg.pid >> "$DAEMON_PIDS" + +let the daemon finish its stuff + + $ sleep 1 + +empty + + $ hg debuginotify + directories being watched: + / + .hg/ + $ mkdir a + $ sleep 1 + +only 'a + + $ hg debuginotify + directories being watched: + / + .hg/ + a/ + $ rmdir a + $ sleep 1 + +empty again + + $ hg debuginotify + directories being watched: + / + .hg/ + $ kill `cat hg.pid`