Mercurial > public > mercurial-scm > hg-stable
annotate tests/test-copy @ 897:fe30f5434b51
Fix bug with empty inc and exc
This fixes an exception that showed up when importing patches
author | mpm@selenic.com |
---|---|
date | Sun, 14 Aug 2005 12:23:36 -0800 |
parents | 0902ffece4b4 |
children | 9344f5dd4488 |
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 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" |
363 | 12 hg history |
13 hg log a | |
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
|
14 md5sum .hg/data/b.d |
462 | 15 hg cat b > bsum |
16 md5sum bsum | |
17 hg cat a > asum | |
18 md5sum asum | |
363 | 19 hg verify |