tests/test-issue352
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Mon, 19 Mar 2007 19:07:37 -0300
changeset 4244 a80502f47552
parent 3607 f4c9bb4ad7b1
child 4186 08d31e43592a
permissions -rwxr-xr-x
hgwebdir: break templater -> templater circular reference This is essentially another instance of the same problem fixed by the parent changeset. See its commit message for the details.

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

hg init foo
cd foo

A=`echo -e -n 'he\rllo'`

echo foo > "hell
o"
echo foo > "$A"
hg add
hg ci -A -m m
rm "$A"
ls
hg add
# BUG ? we don't walk on filenames with '\n' (regexp related) ?
hg debugwalk
hg ci -A -m m

exit 0