##// END OF EJS Templates
Minor typo change to reflect actual values used.
Minor typo change to reflect actual values used.

File last commit:

r2223:b7256206 default
r2338:391c5d0f default
Show More
test-copy
30 lines | 701 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add hg copy...
r363
hg init
echo a > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "1" -d "1000000 0"
mpm@selenic.com
Add hg copy...
r363 hg status
hg copy a b
hg status
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg --debug commit -m "2" -d "1000000 0"
mpm@selenic.com
Update tests
r1043 echo "we should see two history entries"
hg history -v
echo "we should see one log entry for a"
mpm@selenic.com
Add hg copy...
r363 hg log a
mpm@selenic.com
Update tests
r1043 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"
Peter van Dijk
changes by John Levon to standardize some erroroutput
r1926 hg debugdata .hg/data/b.d 0 | head -3 | tail -2
mpm@selenic.com
Update tests
r1043
Matt Mackall
Update tests for revlogng
r2223 $TESTDIR/md5sum.py .hg/data/b.i
mpm@selenic.com
Fix pipe timing for copy test...
r462 hg cat b > bsum
Peter van Dijk
fix testsuite for freebsd and one timingissue
r1923 $TESTDIR/md5sum.py bsum
mpm@selenic.com
Fix pipe timing for copy test...
r462 hg cat a > asum
Peter van Dijk
fix testsuite for freebsd and one timingissue
r1923 $TESTDIR/md5sum.py asum
mpm@selenic.com
Add hg copy...
r363 hg verify