tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Tue, 03 Jul 2007 12:14:25 +0200
changeset 4783 8b90d763ea90
parent 3918 a413f5c29c46
child 7080 a6477aa893b8
permissions -rwxr-xr-x
Add extension to provide the 'hg children' command (with tests)

#!/bin/sh

hg init
mkfifo p

hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 3
kill -HUP $P
wait
echo .hg/* .hg/store/*