tests/test-issue352
author Wagner Bruna <wbruna@softwareexpress.com.br>
Mon, 26 Oct 2009 12:32:14 -0200
changeset 9771 ece7119aa747
parent 8936 1de6e7e1bb9f
permissions -rwxr-xr-x
i18n-pt_BR: synchronized with e06c940d554d

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

"$TESTDIR/hghave" eol-in-paths || exit 80

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