tests/test-issue352
author Patrick Mezard <pmezard@gmail.com>
Sat, 12 May 2007 21:09:29 +0200
changeset 4434 439b1c35348a
parent 4292 b90e323a4781
child 5091 2184378b20b5
permissions -rwxr-xr-x
Fix issue483 - mq does not work under windows with gnu-win32 patch. Add --binary option to patch command under win32.

#!/bin/sh
# http://www.selenic.com/mercurial/bts/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

exit 0