view tests/test-hup @ 11349:cf8a9154a362

revset: fix call to ctx.extra() in closed()
author Georg Brandl <georg@python.org>
date Sun, 13 Jun 2010 23:25:27 +0200
parents a6477aa893b8
children
line wrap: on
line source

#!/bin/sh

"$TESTDIR/hghave" fifo || exit 80

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/*