tests/test-eolfilename
author Brodie Rao <me+hg@dackz.net>
Sun, 14 Feb 2010 17:08:52 -0500
changeset 10475 2253715fde97
parent 8936 tests/test-issue352@1de6e7e1bb9f
permissions -rwxr-xr-x
color: don't crash on invalid status codes (issue2036) If an unknown file with a newline appears in the status output, color shouldn't raise a KeyError trying to parse second line in the filename.

#!/bin/sh
# http://mercurial.selenic.com/bts/issue352

"$TESTDIR/hghave" eol-in-paths || exit 80

echo % test issue352
hg init foo
cd foo

A=`printf 'he\rllo'`

echo foo > "$A"
hg add
hg ci -A -m m
rm "$A"

echo foo > "hell
o"
hg add
hg ci -A -m m

echo foo > "$A"
hg debugwalk

# http://mercurial.selenic.com/bts/issue2036
cd ..
echo % test issue2039

hg init bar
cd bar

echo "[extensions]" >> $HGRCPATH
echo "color=" >> $HGRCPATH

A=`printf 'foo\nbar'`
B=`printf 'foo\nbar.baz'`

touch "$A"
touch "$B"

hg status --color=always

exit 0