Mercurial > hg
annotate tests/test-up-local-change @ 332:6c869059beb4
testing fixups
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
testing fixups
Add note about running tests to README
Fix issue with pipelines and set -x output stability
Add note about stability issue to README
manifest hash: 7e8d9da463b3110664e24978550faab3ef67a706
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCr0/FywK+sNU5EO8RAnWXAJ4toFrvgtsPfR3dYs9a81AsOrfiVQCfZKIf
yJCboAnoJNSSjyUk42ALMxs=
=YJ31
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Tue, 14 Jun 2005 13:44:37 -0800 |
parents | 55f63f3b6a54 |
children | b2293093b89e b4e0e20646bb |
rev | line source |
---|---|
331 | 1 #!/bin/bash |
2 | |
3 export HGMERGE=true | |
4 | |
5 set -ex | |
6 mkdir r1 | |
7 cd r1 | |
8 hg init | |
9 echo a > a | |
10 hg addremove | |
11 hg commit -t "1" -u test -d "0 0" | |
12 | |
13 cd .. | |
14 mkdir r2 | |
15 cd r2 | |
16 hg init ../r1 | |
17 hg up | |
18 echo abc > a | |
332 | 19 hg diff > ../d |
20 sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d | |
331 | 21 |
22 cd ../r1 | |
23 echo b > b | |
24 echo a2 > a | |
25 hg addremove | |
26 hg commit -t "2" -u test -d "0 0" | |
27 | |
28 cd ../r2 | |
29 hg -q pull ../r1 | |
30 hg status | |
31 hg -d up | |
32 hg -d up -m | |
33 hg parents | |
34 hg -v history | |
332 | 35 hg diff > ../d |
36 sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d | |
331 | 37 |