Mercurial > hg
view tests/test-convert-bzr-ghosts @ 12395:cc6d40dffa45 stable
test-archive: fix touch datestamps
Backport 3acd5f7ab9d0 and 9581d5efb6a5 to stable.
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Fri, 24 Sep 2010 02:49:09 +0200 |
parents | 9e6d6568bf7a |
children |
line wrap: on
line source
#!/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