Mercurial > hg
view tests/test-copy @ 5377:756a43a30e34
convert: readd --filemap
To handle merges correctly, this revision adds a filemap_source class
that wraps a converter_source and does the work necessary to calculate
the subgraph we're interested in.
The wrapped converter_source must provide a new getchangedfiles method
that, given a revision rev, and an index N, returns the list of files
that are different in rev and its Nth parent.
The implementation depends on the ability to skip some revisions and to
change the parents field of the commit objects that we returned earlier.
To make the conversion restartable, we assume the revisons in the
revmapfile are topologically sorted.
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Thu, 04 Oct 2007 23:21:37 -0300 |
parents | c0b449154a90 |
children | 997ab9af81df |
line wrap: on
line source
#!/bin/sh hg init echo a > a hg add a hg commit -m "1" -d "1000000 0" hg status hg copy a b hg status hg --debug commit -m "2" -d "1000000 0" echo "we should see two history entries" hg history -v echo "we should see one log entry for a" hg log a echo "this should show a revision linked to changeset 0" hg debugindex .hg/store/data/a.i echo "we should see one log entry for b" hg log b echo "this should show a revision linked to changeset 1" hg debugindex .hg/store/data/b.i echo "this should show the rename information in the metadata" hg debugdata .hg/store/data/b.d 0 | head -3 | tail -2 $TESTDIR/md5sum.py .hg/store/data/b.i hg cat b > bsum $TESTDIR/md5sum.py bsum hg cat a > asum $TESTDIR/md5sum.py asum hg verify