test-issue352
24 lines
| 265 B
| text/plain
|
TextLexer
/ tests / test-issue352
Giorgos Keramidas
|
r4292 | #!/bin/sh | ||
Dirkjan Ochtman
|
r8936 | # http://mercurial.selenic.com/bts/issue352 | ||
Benoit Boissinot
|
r3607 | |||
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 | ||