tests/test-issue352
changeset 3607 f4c9bb4ad7b1
child 4181 08d31e43592a
equal deleted inserted replaced
3606:f8589028a7fa 3607:f4c9bb4ad7b1
       
     1 #!/bin/bash
       
     2 # http://www.selenic.com/mercurial/bts/issue352
       
     3 
       
     4 hg init foo
       
     5 cd foo
       
     6 
       
     7 A=`echo -e -n 'he\rllo'`
       
     8 
       
     9 echo foo > "hell
       
    10 o"
       
    11 echo foo > "$A"
       
    12 hg add
       
    13 hg ci -A -m m
       
    14 rm "$A"
       
    15 ls
       
    16 hg add
       
    17 # BUG ? we don't walk on filenames with '\n' (regexp related) ?
       
    18 hg debugwalk
       
    19 hg ci -A -m m
       
    20 
       
    21 exit 0