view tests/test-issue352 @ 4439:4e521a3ee5eb

Test issue 562: .hgignore requires newline at end
author Patrick Mezard <pmezard@gmail.com>
date Sat, 19 May 2007 22:46:59 +0200
parents f4c9bb4ad7b1
children 08d31e43592a
line wrap: on
line source

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