tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Thu, 27 Apr 2006 21:03:07 +0200
changeset 2141 ed631e83fa06
parent 2088 f16435b45780
child 2529 9419855309cd
permissions -rwxr-xr-x
Corrected error message for incompatible revision flags.

#!/bin/sh

hg init
mkfifo p

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