tests/test-issue352
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Sat, 18 Nov 2006 19:44:42 -0200
changeset 3675 6990e499d71a
parent 3607 f4c9bb4ad7b1
child 4181 08d31e43592a
permissions -rwxr-xr-x
Revert almost all of 5be434785317; add a test Because of file copies, we should update the manifest dict only after committing all files.

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

hg init foo
cd foo

A=`echo -e -n 'he\rllo'`

echo foo > "hell
o"
echo foo > "$A"
hg add
hg ci -A -m m
rm "$A"
ls
hg add
# BUG ? we don't walk on filenames with '\n' (regexp related) ?
hg debugwalk
hg ci -A -m m

exit 0