tests/test-issue352
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Sat, 31 Oct 2009 16:42:51 +0100
changeset 9676 48bf28d3c8dd
parent 8936 1de6e7e1bb9f
permissions -rwxr-xr-x
bundlerepo: keep the bundlerevlog interface in sync with revlog

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