tests/test-ro-message
author Matt Mackall <mpm@selenic.com>
Fri, 07 Apr 2006 20:08:11 -0500
changeset 2052 c0b945c5df08
parent 1738 f293ad87f928
child 2283 e506c14382fd
permissions -rwxr-xr-x
Added tag 0.8.1 for changeset 6a03cff2b0f5d30281e6addefe96b993582f2eac

#!/bin/sh
HG=hg
"$HG" init
mkdir b
echo 'Bouncy' >b/bouncy
echo 'tricycle' >b/vehicle
"$HG" add b/bouncy
"$HG" add b/vehicle
"$HG" commit -m 'Adding bouncy'
echo 'bouncy' >>b/bouncy
"$HG" commit -m 'Making it bouncier'
"$HG" update -C 0
echo 'stationary' >>b/vehicle
"$HG" commit -m 'Clarifying the vehicle.'
"$HG" update -C 1
chmod a-w b/vehicle
"$HG" update -m 2 2>&1 | sed 's|^\(.*[ 	]\).*/\([^/]*/[^/]*/[^/]*\)$|\1\2|g'