tests/test-issue352
author John Goerzen <jgoerzen@complete.org>
Mon, 26 Mar 2007 20:46:49 -0500
changeset 4283 8625504f507c
parent 4181 08d31e43592a
child 4292 b90e323a4781
permissions -rwxr-xr-x
Slight refining to help text in patchbomb.py

#!/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"

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

echo foo > "$A"
hg debugwalk

exit 0