author | mpm@selenic.com |
Wed, 24 Aug 2005 19:19:35 -0700 | |
changeset 1043 | 9344f5dd4488 |
parent 814 | 0902ffece4b4 |
child 1252 | 94f38724283f |
permissions | -rwxr-xr-x |
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 |
cp a b |
|
9 |
hg copy a b |
|
10 |
hg status |
|
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
591
diff
changeset
|
11 |
hg --debug commit -m "2" -d "0 0" |
1043 | 12 |
echo "we should see two history entries" |
13 |
hg history -v |
|
14 |
echo "we should see one log entry for a" |
|
363 | 15 |
hg log a |
1043 | 16 |
echo "this should show a revision linked to changeset 0" |
17 |
hg debugindex .hg/data/a.i |
|
18 |
echo "we should see one log entry for b" |
|
19 |
hg log b |
|
20 |
echo "this should show a revision linked to changeset 1" |
|
21 |
hg debugindex .hg/data/b.i |
|
22 |
||
23 |
echo "this should show the rename information in the metadata" |
|
24 |
hg debugdata .hg/data/b.d 0 | head -n 3 | tail -n 2 |
|
25 |
||
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
|
26 |
md5sum .hg/data/b.d |
462 | 27 |
hg cat b > bsum |
28 |
md5sum bsum |
|
29 |
hg cat a > asum |
|
30 |
md5sum asum |
|
363 | 31 |
hg verify |