Mercurial > hg
view tests/test-copy @ 3508:0aef94f45ebf
revlog.py: always return tuples from parents and parentrevs
There's at least one place doing parentrevs(rev) != (rev-1, -1),
which is always true with revlog v0, since parentrevs returns a list
in this case.
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Tue, 24 Oct 2006 23:00:43 -0300 |
parents | b72562060e45 |
children | c0b449154a90 |
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/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/data/b.i echo "this should show the rename information in the metadata" hg debugdata .hg/data/b.d 0 | head -3 | tail -2 $TESTDIR/md5sum.py .hg/data/b.i hg cat b > bsum $TESTDIR/md5sum.py bsum hg cat a > asum $TESTDIR/md5sum.py asum hg verify