tests/test-issue352
author Matt Mackall <mpm@selenic.com>
Tue, 05 Dec 2006 16:28:59 -0600
changeset 3800 54fd4d3b4fce
parent 3607 f4c9bb4ad7b1
child 4181 08d31e43592a
permissions -rwxr-xr-x
Generate docs for help topics

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