tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 24 Mar 2006 08:51:08 +0100
changeset 1994 78ef83c9e9e1
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
show message if no changes found on outgoing Now the messages for pull/push/incoming/outgoing should be consistent.

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