tests/test-hup
author David Soria Parra <dsp@php.net>
Sat, 06 Dec 2008 16:15:59 +0100
changeset 7482 42cb14f20d76
parent 7080 a6477aa893b8
permissions -rwxr-xr-x
bookmarks: Fix tests As we merge tags now with bookmarks we have add those tags to the tests.

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