tests/test-hup
author Matt Mackall <mpm@selenic.com>
Mon, 11 Jun 2007 21:09:23 -0500
changeset 4541 3f4555babe74
parent 3917 a413f5c29c46
permissions -rwxr-xr-x
localrepo: break out the repo-finding walk into its own function

#!/bin/sh

hg init
mkfifo p

hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 3
kill -HUP $P
wait
echo .hg/* .hg/store/*