tests/test-issue352
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 22 Nov 2006 22:33:57 +0100
changeset 3706 0d810798acb1
parent 3607 f4c9bb4ad7b1
child 4186 08d31e43592a
permissions -rwxr-xr-x
Use 'bundletype' instead of 'type' to not shadow built-in function.

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