tests/test-convert
author Bryan O'Sullivan <bos@serpentine.com>
Thu, 09 Aug 2007 19:42:33 -0700
changeset 5138 13d23d66a6cd
parent 5028 36e8983fe44d
child 5437 71e7c86adcb7
permissions -rwxr-xr-x
manifest: accept -r for rev specification

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "convert=" >> $HGRCPATH

hg init a
cd a
echo a > a
hg ci -d'0 0' -Ama
hg cp a b
hg ci -d'1 0' -mb
hg rm a
hg ci -d'2 0' -mc
hg mv b a
hg ci -d'3 0' -md
echo a >> a
hg ci -d'4 0' -me

cd ..
hg convert a 2>&1 | grep -v 'subversion python bindings could not be loaded'
hg --cwd a-hg pull ../a