Mercurial > hg
comparison tests/test-ro-message @ 1355:9116fe491b06
Test case for the misleading message on bad permissions.
author | Eric Hopper <hopper@omnifarious.org> |
---|---|
date | Tue, 27 Sep 2005 14:59:02 -0700 |
parents | |
children | ec1895e297f7 |
comparison
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' |