tests/test-convert-bzr-ghosts
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Mon, 29 Sep 2008 12:12:53 +0200
changeset 7058 9e6d6568bf7a
parent 7053 209ef5f3534c
permissions -rwxr-xr-x
`source` doesn't work for some /bin/sh, use `.` instead

#!/bin/sh

. "$TESTDIR/bzr-definitions"

cat > ghostcreator.py <<EOF
import sys
from bzrlib import workingtree
wt = workingtree.WorkingTree.open('.')

message, ghostrev = sys.argv[1:]
wt.set_parent_ids(wt.get_parent_ids() + [ghostrev])
wt.commit(message)
EOF

echo % ghost revisions
mkdir test-ghost-revisions
cd test-ghost-revisions
bzr init -q source
cd source
echo content > somefile
bzr add -q somefile
bzr commit -q -m 'Initial layout setup'
echo morecontent >> somefile
python ../../ghostcreator.py 'Commit with ghost revision' ghostrev
cd ..
hg convert source source-hg
glog -R source-hg