tests/test-ro-message
changeset 1355 9116fe491b06
child 1356 ec1895e297f7
equal deleted inserted replaced
1354:8cf364c65425 1355:9116fe491b06
       
     1 #!/bin/sh
       
     2 HG=hg
       
     3 "$HG" init
       
     4 mkdir b
       
     5 echo 'Bouncy' >b/bouncy
       
     6 echo 'tricycle' >b/vehicle
       
     7 "$HG" add b/bouncy
       
     8 "$HG" add b/vehicle
       
     9 "$HG" commit -m 'Adding bouncy'
       
    10 echo 'bouncy' >>b/bouncy
       
    11 "$HG" commit -m 'Making it bouncier'
       
    12 "$HG" update -C 0
       
    13 echo 'stationary' >>b/vehicle
       
    14 "$HG" commit -m 'Clarifying the vehicle.'
       
    15 "$HG" update -C 1
       
    16 chmod a-w b/vehicle
       
    17 "$HG" update -m 2 2>&1 | sed 's|^\(.*[ 	]\)/tmp/[^/]*/\(.*\)$|\1\2|g'