changeset 12451:17ebf11bff81

tests: unify test-inotify-debuginotify
author Matt Mackall <mpm@selenic.com>
date Sun, 26 Sep 2010 13:43:21 -0500
parents 0fcdae13493b
children f727db60abb4
files tests/test-inotify-debuginotify tests/test-inotify-debuginotify.out tests/test-inotify-debuginotify.t
diffstat 3 files changed, 41 insertions(+), 46 deletions(-) [+]
line wrap: on
line diff
--- 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`
--- 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/
--- /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`