##// END OF EJS Templates
Additional appendfile fixes for interleaved data/index files...
Additional appendfile fixes for interleaved data/index files The appendfile code was not passing default version info to the changelog or manifest classes, and so they were always being created as version 0. revlog.checkinlinesize had to be corrected to seek to the end of the index file when no index file was passed (only clone does this)

File last commit:

r814:0902ffec merge default
r2082:856f0ba2 default
Show More
test-simple-update
24 lines | 237 B | text/plain | TextLexer
/ tests / test-simple-update
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a simple testing framework...
r331
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 set -e
mpm@selenic.com
Add a simple testing framework...
r331
mkdir test
cd test
echo foo>foo
hg init
hg addremove
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "1"
mpm@selenic.com
Add a simple testing framework...
r331 hg verify
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone . ../branch
cd ../branch
mpm@selenic.com
Add a simple testing framework...
r331 hg co
echo bar>>foo
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "2"
mpm@selenic.com
Add a simple testing framework...
r331
cd ../test
hg pull ../branch
hg verify
hg co
cat foo
mpm@selenic.com
[PATCH] add clone command...
r485 hg manifest