tests/test-ro-message
author Eric Hopper <hopper@omnifarious.org>
Fri, 18 Nov 2005 22:48:47 -0800
changeset 1559 59b3639df0a9
parent 1356 ec1895e297f7
child 1738 f293ad87f928
permissions -rwxr-xr-x
Convert all classes to new-style classes by deriving them from object.

#!/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|^\(.*[ 	]\)/tmp/[^/]*/\(.*\)$|\1\2|g'