test-issue352
22 lines
| 232 B
| text/plain
|
TextLexer
/ tests / test-issue352
Benoit Boissinot
|
r3607 | #!/bin/bash | ||
# http://www.selenic.com/mercurial/bts/issue352 | ||||
hg init foo | ||||
cd foo | ||||
A=`echo -e -n 'he\rllo'` | ||||
echo foo > "$A" | ||||
hg add | ||||
hg ci -A -m m | ||||
rm "$A" | ||||
Alexis S. L. Carvalho
|
r4186 | |||
echo foo > "hell | ||||
o" | ||||
Benoit Boissinot
|
r3607 | hg add | ||
hg ci -A -m m | ||||
Alexis S. L. Carvalho
|
r4186 | echo foo > "$A" | ||
hg debugwalk | ||||
Benoit Boissinot
|
r3607 | exit 0 | ||