Mercurial > hg-stable
annotate tests/test-copy @ 1562:2f97af0b522c
Fix walkhelper on windows.
The ''seen'' dictionary stores paths in canonical form,
so the walkhelp must also provide paths in that form,
otherwise the changed files are listed twice.
author | Christian Boos <cboos@neuf.fr> |
---|---|
date | Thu, 01 Dec 2005 10:48:18 -0600 |
parents | 94f38724283f |
children | 7d83a351a936 |
rev | line source |
---|---|
544
3d4d5f2aba9a
Remove bashisms and use /bin/sh instead of /bin/bash.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
464
diff
changeset
|
1 #!/bin/sh |
363 | 2 |
3 hg init | |
4 echo a > a | |
5 hg add a | |
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
591
diff
changeset
|
6 hg commit -m "1" -d "0 0" |
363 | 7 hg status |
8 hg copy a b | |
9 hg status | |
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
591
diff
changeset
|
10 hg --debug commit -m "2" -d "0 0" |
1043 | 11 echo "we should see two history entries" |
12 hg history -v | |
13 echo "we should see one log entry for a" | |
363 | 14 hg log a |
1043 | 15 echo "this should show a revision linked to changeset 0" |
16 hg debugindex .hg/data/a.i | |
17 echo "we should see one log entry for b" | |
18 hg log b | |
19 echo "this should show a revision linked to changeset 1" | |
20 hg debugindex .hg/data/b.i | |
21 | |
22 echo "this should show the rename information in the metadata" | |
23 hg debugdata .hg/data/b.d 0 | head -n 3 | tail -n 2 | |
24 | |
800
ec85f9e6f3b1
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
749
diff
changeset
|
25 md5sum .hg/data/b.d |
462 | 26 hg cat b > bsum |
27 md5sum bsum | |
28 hg cat a > asum | |
29 md5sum asum | |
363 | 30 hg verify |