tests/test-hup
author Lee Cantey <lcantey@gmail.com>
Fri, 24 Mar 2006 08:27:24 +0100
changeset 1992 ea8345a7a29d
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Include templates/static/* in MANIFEST.in so that distutils setup will include them.

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