tests/test-issue352
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Tue, 03 Jul 2007 03:06:40 -0300
changeset 4775 438603c1eb6f
parent 4292 b90e323a4781
child 5091 2184378b20b5
permissions -rwxr-xr-x
test-rename: use hg status -C; don't use hg debugstate | grep copy

#!/bin/sh
# http://www.selenic.com/mercurial/bts/issue352

hg init foo
cd foo

A=`printf 'he\rllo'`

echo foo > "$A"
hg add
hg ci -A -m m
rm "$A"

echo foo > "hell
o"
hg add
hg ci -A -m m

echo foo > "$A"
hg debugwalk

exit 0