tests/simple-merge
author mpm@selenic.com
Fri, 20 May 2005 17:35:20 -0800
changeset 116 e484cd5ec282
parent 28 9f64ee817199
permissions -rw-r--r--
Only use lazy indexing for big indices and avoid the overhead of the lazy index in the small index case.

set -ex
export EDITOR=true
rm -rf test branch

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit
hg verify
cd ..

cp -a test branch
cd branch
echo bar>>foo
hg commit

cd ../test
hg merge ../branch
hg verify