tests/test-issue352
changeset 3607 f4c9bb4ad7b1
child 4186 08d31e43592a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test-issue352	Wed Nov 01 17:56:55 2006 +0100
@@ -0,0 +1,21 @@
+#!/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