tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Mon, 26 Jun 2006 14:56:14 +0200
changeset 2500 76ff5efe8181
parent 2088 f16435b45780
child 2529 9419855309cd
permissions -rwxr-xr-x
Fixed [web] allow_archive for comma separated parameters by using ui.configlist. Changed tests/test-archive to use allow_archive instead of the deprecated allowzip, allowgz and allowbz2.

#!/bin/sh

hg init
mkfifo p

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