tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Thu, 27 Apr 2006 21:16:46 +0200
changeset 2142 8a1e2a9c7013
parent 2088 f16435b45780
child 2529 9419855309cd
permissions -rwxr-xr-x
Replaced 0 with REVLOGV0 where this meaning is used.

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