tests/test-issue352
author Eric St-Jean <esj@wwd.ca>
Wed, 21 Mar 2007 23:20:56 -0400
changeset 4261 1eaa8d90c689
parent 4181 08d31e43592a
child 4292 b90e323a4781
permissions -rwxr-xr-x
fix util.copyfile to deal with symlinks

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

hg init foo
cd foo

A=`echo -e -n '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