tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 26 Apr 2006 07:03:10 +0200
changeset 2131 f5bbc5562434
parent 2088 f16435b45780
child 2529 9419855309cd
permissions -rwxr-xr-x
Try harder to display node hashes in tags view in monospaced font. Used to work around Firefox's behaviour if "Allow pages to choose their own fonts" is disabled.

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