tests/test-hup
author Johannes Stezenbach <js@linuxtv.org>
Mon, 06 Feb 2006 17:34:53 -0600
changeset 1703 41d884f741ca
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
fix changenav for maxchanges != 10 for maxchanges = 25 the changelog navigation had a minimum stepsize of 30; try to calculate more useful navigation steps

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