tests/test-hup
author TK Soh <teekaysoh@yahoo.com>
Sat, 27 Aug 2005 18:55:14 -0700
changeset 1113 6130de75bb2a
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Updated manpage and help. Updated manpage on change to hg status; standardized description of -print0 options.

#!/bin/sh

hg init
mkfifo p

hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 1
kill -HUP $P
sleep 1
ls .hg