tests/test-hup
author mason@suse.com
Tue, 04 Apr 2006 16:38:43 -0400
changeset 2074 01ee43dda681
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Fix bundle repos to use an index tuple consistent with revlogng The bundle repo code was adding a field to the index tuple, which confused the revlogng changes. This creates a new dict instead to maintain the extra bundle info.

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