tests/test-issue352
author Matt Mackall <mpm@selenic.com>
Thu, 22 Mar 2007 19:54:15 -0500
changeset 4268 eb081ba21eff
parent 4181 08d31e43592a
child 4292 b90e323a4781
permissions -rwxr-xr-x
appendfile: remove unused manifest code

#!/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