Mercurial > hg
view tests/test-copy @ 1117:30ab5b8ee8ec
fix some rename/copy bugs
- delete copy information when we update dirstate
hg was keeping the copy state and marking things as copied on
multiple commits
- files that are renamed should have no parents
if you do a rename/copy to an existing file, it should not be marked
as descending from its previous revisions.
- remove spurious print from filelog.renamed
- add some more copy tests
author | mpm@selenic.com |
---|---|
date | Sat, 27 Aug 2005 22:04:17 -0700 |
parents | 9344f5dd4488 |
children | 94f38724283f |
line wrap: on
line source
#!/bin/sh hg init echo a > a hg add a hg commit -m "1" -d "0 0" hg status cp a b hg copy a b hg status hg --debug commit -m "2" -d "0 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 -n 3 | tail -n 2 md5sum .hg/data/b.d hg cat b > bsum md5sum bsum hg cat a > asum md5sum asum hg verify