tests/test-hup
author Brendan Cully <brendan@kublai.com>
Thu, 12 Apr 2007 15:07:05 -0700
changeset 4343 077aafddd35f
parent 3918 a413f5c29c46
child 7080 a6477aa893b8
permissions -rwxr-xr-x
Merge with crew-stable

#!/bin/sh

hg init
mkfifo p

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