tests/test-hup
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Thu, 21 Jun 2007 00:34:14 -0300
changeset 4658 17f5d2069551
parent 3917 a413f5c29c46
permissions -rwxr-xr-x
mq: test that qpush cleans things up when it fails

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