tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Mon, 29 Aug 2005 07:42:46 +0200
changeset 1144 8a39df05d2c1
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Documented passing list or dict instead of config file in hgwebdir.cgi

#!/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