tests/test-hup
author Vadim Gelfer <vadim.gelfer@gmail.com>
Fri, 10 Feb 2006 11:25:07 -0800
changeset 1829 b0f6af327fd4
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
hgwebdir: export collections of repos now you can use [collections] section in hgweb.config to export entire tree of repos.

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