##// END OF EJS Templates
Fixed test for previous change of 'hg -v history'....
Fixed test for previous change of 'hg -v history'. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fixed test for previous change of 'hg -v history'. manifest hash: 5a7d918645596751577b95d0dfba28fd70274b48 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFCwOjDW7P1GVgWeRoRAvL7AJwO27B6qhOZZC+16SPjIxJBKz3BSwCghmkB OMzLY0CjZSHixF5xs0ZU6Dw= =F04F -----END PGP SIGNATURE-----

File last commit:

r485:c5705ab9 default
r494:6020bde7 default
Show More
test-up-local-change
35 lines | 447 B | text/plain | TextLexer
/ tests / test-up-local-change
mpm@selenic.com
Add a simple testing framework...
r331 #!/bin/bash
export HGMERGE=true
set -ex
mkdir r1
cd r1
hg init
echo a > a
hg addremove
hg commit -t "1" -u test -d "0 0"
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone . ../r2
cd ../r2
mpm@selenic.com
Add a simple testing framework...
r331 hg up
echo abc > a
mpm@selenic.com
testing fixups...
r332 hg diff > ../d
sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331
cd ../r1
echo b > b
echo a2 > a
hg addremove
hg commit -t "2" -u test -d "0 0"
cd ../r2
hg -q pull ../r1
hg status
hg -d up
hg -d up -m
hg parents
hg -v history
mpm@selenic.com
testing fixups...
r332 hg diff > ../d
sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331