view tests/test-issue352 @ 4292:b90e323a4781

Use printf(1) instead of using bash-specific shell code. Submitted by: Benoit Boissinot <bboissin@gmail.com>
author Giorgos Keramidas <keramida@ceid.upatras.gr>
date Sat, 30 Dec 2006 21:33:45 +0200
parents 08d31e43592a
children
line wrap: on
line source

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