tests/test-hup
author Matt Mackall <mpm@selenic.com>
Wed, 28 Jun 2006 16:52:42 -0500
changeset 2561 494f7787d8ee
parent 2088 f16435b45780
child 2529 9419855309cd
permissions -rwxr-xr-x
revlog: make lookup handle binary nodes

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