tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Sat, 18 Feb 2006 16:31:02 +0100
changeset 1746 299c3e26ee45
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Fixed misleading indentation in mpatch.c

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