##// END OF EJS Templates
run-tests: remove '+ hg' trick...
run-tests: remove '+ hg' trick This was causing me a fair amount of debugging confusion. Let's just forget it entirely. Updated tests to match.

File last commit:

r814:0902ffec merge default
r925:5a034646 default
Show More
test-up-local-change
33 lines | 443 B | text/plain | TextLexer
/ tests / test-up-local-change
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a simple testing framework...
r331
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 set -e
mpm@selenic.com
Add a simple testing framework...
r331 mkdir r1
cd r1
hg init
echo a > a
hg addremove
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "1" -d "0 0"
mpm@selenic.com
Add a simple testing framework...
r331
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
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 sed "s/\(\(---\|+++\) [a-zA-Z0-9_/.-]*\).*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331
cd ../r1
echo b > b
echo a2 > a
hg addremove
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "2" -d "0 0"
mpm@selenic.com
Add a simple testing framework...
r331
cd ../r2
hg -q pull ../r1
hg status
mpm@selenic.com
options: kill -d for debug...
r591 hg --debug up
hg --debug up -m
mpm@selenic.com
Add a simple testing framework...
r331 hg parents
hg -v history
mpm@selenic.com
testing fixups...
r332 hg diff > ../d
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 sed "s/\(\(---\|+++\) [a-zA-Z0-9_/.-]*\).*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331