view tests/test-pull @ 1784:2e0a288ca93e

revalidate revlog data after locking the repo (issue132)
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Wed, 22 Feb 2006 07:26:29 +0100
parents 385b06493465
children ffb584a182d1
line wrap: on
line source

#!/bin/sh

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m 1
hg verify
serverpid=`mktemp`
hg serve -p 20059 -d --pid-file=$serverpid
cd ..

hg clone http://localhost:20059/ copy
cd copy
hg verify
hg co
cat foo
hg manifest
hg pull

kill `cat $serverpid`
rm $serverpid