test-issue352
24 lines
| 269 B
| text/plain
|
TextLexer
/ tests / test-issue352
Giorgos Keramidas
|
r4292 | #!/bin/sh | ||
Benoit Boissinot
|
r3607 | # http://www.selenic.com/mercurial/bts/issue352 | ||
Patrick Mezard
|
r5075 | "$TESTDIR/hghave" eol-in-paths || exit 80 | ||
Benoit Boissinot
|
r3607 | hg init foo | ||
cd foo | ||||
Giorgos Keramidas
|
r4292 | A=`printf 'he\rllo'` | ||
Benoit Boissinot
|
r3607 | |||
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 | ||