tests/test-issue352
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Sat, 10 Mar 2007 23:00:49 -0300
changeset 4184 b1716a1f79c4
parent 4181 08d31e43592a
child 4292 b90e323a4781
permissions -rwxr-xr-x
util._matcher: fix handling of path: patterns

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