tests/test-update-renames
author Pradeepkumar Gayam <in3xes@gmail.com>
Tue, 27 Jul 2010 20:50:09 +0530
changeset 11694 bf49d48e4602
parent 10874 4f11978ae45d
permissions -rwxr-xr-x
perf: add perfrevlog function to check performance of revlog

#!/bin/sh

# test update logic when there are renames


# update with local changes across a file rename
hg init a
cd a
echo a > a
hg add a
hg ci -m a
hg mv a b
hg ci -m rename
echo b > b
hg ci -m change
hg up -q 0
echo c > a
hg up
cd ..