##// END OF EJS Templates
merge with crew-stable
merge with crew-stable

File last commit:

r3607:f4c9bb4a default
r4181:ac9e891f merge default
Show More
test-issue352
21 lines | 281 B | text/plain | TextLexer
#!/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